This commit is contained in:
ntr 2019-12-11 18:05:31 +10:00
parent 804d3397c7
commit 676c63479c

View File

@ -446,6 +446,8 @@ impl Game {
self.stack_sort_speed();
};
self.progress_durations();
// go through the whole most recent round and modify delays of the resolutions
let last = self.resolutions.len() - 1;
let mut iter = self.resolutions[last].iter_mut().peekable();
@ -486,8 +488,6 @@ impl Game {
self.execute(cast);
}
self.progress_durations();
self
}