This commit is contained in:
Ben Wallis 2021-06-17 21:36:24 +01:00
parent d354efc239
commit 68b0d34a65
2 changed files with 1 additions and 3 deletions

View File

@ -85,8 +85,7 @@ impl Clock {
.map_or(self.last_dt.as_secs_f32(), |t| t.into_inner()),
);
if self.last_dts.len() >= NUMBER_OF_DELTAS_COMPARED && self.last_dt > 2 * stable_dt {
//tracing::debug!(?self.last_dt, ?self.total_tick_time, "lag spike detected,
// unusually slow tick");
tracing::debug!(?self.last_dt, ?self.total_tick_time, "lag spike detected, unusually slow tick");
stable_dt
} else {
self.last_dt

View File

@ -655,7 +655,6 @@ impl Item {
ability_map,
msm,
);
new_item.set_amount(self.amount()).expect(
"`new_item` has the same `item_def` and as an invariant, \
self.set_amount(self.amount()) should always succeed.",