feat: Add berries_per_focus_minute option in GameConfig (#63)

This commit is contained in:
demenik
2025-12-10 14:00:47 +01:00
parent d0643cc6a6
commit 0362620433
2 changed files with 4 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ pub struct GameConfig {
pub shovel_rate: f32,
pub berry_seeds: Vec<BerrySeedConfig>,
pub wonder_event_url: String,
pub berries_per_focus_minute: u32,
}
#[derive(Deserialize, Debug, Clone)]
@@ -54,6 +55,7 @@ impl Default for GameConfig {
},
],
wonder_event_url: "wss://pomomon.farm/ws".into(),
berries_per_focus_minute: 1,
}
}
}