Ändere Dateiberechtigungen auf ausführbar für mehrere Dateien
All checks were successful
Deploy yourpart (blue-green) / deploy (push) Successful in 2m45s
All checks were successful
Deploy yourpart (blue-green) / deploy (push) Successful in 2m45s
This commit is contained in:
0
src/config.rs
Normal file → Executable file
0
src/config.rs
Normal file → Executable file
0
src/db/connection.rs
Normal file → Executable file
0
src/db/connection.rs
Normal file → Executable file
0
src/db/mod.rs
Normal file → Executable file
0
src/db/mod.rs
Normal file → Executable file
0
src/main.rs
Normal file → Executable file
0
src/main.rs
Normal file → Executable file
0
src/message_broker.rs
Normal file → Executable file
0
src/message_broker.rs
Normal file → Executable file
0
src/websocket_server.rs
Normal file → Executable file
0
src/websocket_server.rs
Normal file → Executable file
0
src/worker/base.rs
Normal file → Executable file
0
src/worker/base.rs
Normal file → Executable file
0
src/worker/character_creation.rs
Normal file → Executable file
0
src/worker/character_creation.rs
Normal file → Executable file
0
src/worker/death_log.rs
Normal file → Executable file
0
src/worker/death_log.rs
Normal file → Executable file
0
src/worker/director.rs
Normal file → Executable file
0
src/worker/director.rs
Normal file → Executable file
0
src/worker/events.rs
Normal file → Executable file
0
src/worker/events.rs
Normal file → Executable file
0
src/worker/falukant_certificate.rs
Normal file → Executable file
0
src/worker/falukant_certificate.rs
Normal file → Executable file
0
src/worker/falukant_debtors.rs
Normal file → Executable file
0
src/worker/falukant_debtors.rs
Normal file → Executable file
0
src/worker/falukant_family.rs
Normal file → Executable file
0
src/worker/falukant_family.rs
Normal file → Executable file
0
src/worker/falukant_servants.rs
Normal file → Executable file
0
src/worker/falukant_servants.rs
Normal file → Executable file
0
src/worker/falukant_transport_raid.rs
Normal file → Executable file
0
src/worker/falukant_transport_raid.rs
Normal file → Executable file
0
src/worker/house.rs
Normal file → Executable file
0
src/worker/house.rs
Normal file → Executable file
0
src/worker/mod.rs
Normal file → Executable file
0
src/worker/mod.rs
Normal file → Executable file
0
src/worker/notify.rs
Normal file → Executable file
0
src/worker/notify.rs
Normal file → Executable file
0
src/worker/political_benefits.rs
Normal file → Executable file
0
src/worker/political_benefits.rs
Normal file → Executable file
0
src/worker/politics.rs
Normal file → Executable file
0
src/worker/politics.rs
Normal file → Executable file
0
src/worker/produce.rs
Normal file → Executable file
0
src/worker/produce.rs
Normal file → Executable file
0
src/worker/simple.rs
Normal file → Executable file
0
src/worker/simple.rs
Normal file → Executable file
0
src/worker/sql.rs
Normal file → Executable file
0
src/worker/sql.rs
Normal file → Executable file
0
src/worker/stockage_manager.rs
Normal file → Executable file
0
src/worker/stockage_manager.rs
Normal file → Executable file
0
src/worker/transport.rs
Normal file → Executable file
0
src/worker/transport.rs
Normal file → Executable file
0
src/worker/underground.rs
Normal file → Executable file
0
src/worker/underground.rs
Normal file → Executable file
4
src/worker/user_character.rs
Normal file → Executable file
4
src/worker/user_character.rs
Normal file → Executable file
@@ -189,7 +189,7 @@ impl UserCharacterWorker {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
/// Ehe: Geburten/stale stündlich; Konzeption höchstens einmal pro Kalendertag (ein Jahreswurf, `prob_year`).
|
||||
/// Ehe/geplante Geburten zeitnah; Konzeption höchstens einmal pro Kalendertag (ein Jahreswurf, `prob_year`).
|
||||
/// Konzeption setzt `marriage_pregnancy_due_at` (+18 Stunden); Geburt über `QUERY_GET_MARRIAGE_BIRTH_DELIVERIES`.
|
||||
/// Kein separates „Hochzeitsnacht“-Event — erste Konzeption am nächsten Tageslauf nach der Hochzeit.
|
||||
fn maybe_run_hourly_pregnancies(&mut self) {
|
||||
@@ -198,7 +198,7 @@ impl UserCharacterWorker {
|
||||
|
||||
let run_hourly = match self.last_pregnancy_run {
|
||||
None => true,
|
||||
Some(last) => now.saturating_duration_since(last) >= Duration::from_secs(3600),
|
||||
Some(last) => now.saturating_duration_since(last) >= Duration::from_secs(60),
|
||||
};
|
||||
|
||||
let run_daily_fertility = self.last_marriage_fertility_date != Some(today);
|
||||
|
||||
0
src/worker/value_recalculation.rs
Normal file → Executable file
0
src/worker/value_recalculation.rs
Normal file → Executable file
0
src/worker/weather.rs
Normal file → Executable file
0
src/worker/weather.rs
Normal file → Executable file
Reference in New Issue
Block a user