mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Fixed CI
This commit is contained in:
parent
80ebc145a8
commit
e7ea614607
@ -83,8 +83,9 @@ mod tests {
|
|||||||
},
|
},
|
||||||
false,
|
false,
|
||||||
None,
|
None,
|
||||||
// Dummy ServerConstants
|
&ServerConstants {
|
||||||
&ServerConstants::default(),
|
day_cycle_coefficient: 24.0,
|
||||||
|
},
|
||||||
|_, _| {},
|
|_, _| {},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -18,7 +18,9 @@ fn simple_run() {
|
|||||||
},
|
},
|
||||||
false,
|
false,
|
||||||
None,
|
None,
|
||||||
&ServerConstants::default(),
|
&ServerConstants {
|
||||||
|
day_cycle_coefficient: 24.0,
|
||||||
|
},
|
||||||
|_, _| {},
|
|_, _| {},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -65,7 +65,9 @@ pub fn tick(state: &mut State, dt: Duration) {
|
|||||||
},
|
},
|
||||||
false,
|
false,
|
||||||
None,
|
None,
|
||||||
&ServerConstants::default(),
|
&ServerConstants {
|
||||||
|
day_cycle_coefficient: 24.0,
|
||||||
|
},
|
||||||
|_, _| {},
|
|_, _| {},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user