This commit is contained in:
Joshua Barretto 2023-05-14 22:27:47 +01:00
parent 80ebc145a8
commit e7ea614607
3 changed files with 9 additions and 4 deletions

View File

@ -83,8 +83,9 @@ mod tests {
},
false,
None,
// Dummy ServerConstants
&ServerConstants::default(),
&ServerConstants {
day_cycle_coefficient: 24.0,
},
|_, _| {},
);
}

View File

@ -18,7 +18,9 @@ fn simple_run() {
},
false,
None,
&ServerConstants::default(),
&ServerConstants {
day_cycle_coefficient: 24.0,
},
|_, _| {},
);
}

View File

@ -65,7 +65,9 @@ pub fn tick(state: &mut State, dt: Duration) {
},
false,
None,
&ServerConstants::default(),
&ServerConstants {
day_cycle_coefficient: 24.0,
},
|_, _| {},
);
}