Fixed tests

This commit is contained in:
Joshua Barretto 2023-04-10 18:40:31 +01:00
parent b50645c1ee
commit 00559187d6
3 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ mod tests {
None,
// Dummy ServerConstants
&ServerConstants::default(),
|_, _, _, _| {},
|_, _| {},
);
}

View File

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

View File

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