goes there

This commit is contained in:
ntr 2019-12-10 15:14:49 +10:00
parent 2a63f26dc6
commit 0cac570695

View File

@ -451,6 +451,13 @@ impl Game {
self.stack_sort_speed();
};
// update to go through the whole most recent round and modify durations
// let mut iter = event_list.into_iter().peekable();
// while let Some(event) = iter.next() {
// resolutions.push(Resolution::new(cast, event, iter.peek()));
// }
// info!("{:#?}", self.casts);
// handle cooldowns and statuses
@ -469,12 +476,6 @@ impl Game {
self.execute(cast);
}
// update to go through the whole most recent round and modify durations
// let mut iter = event_list.into_iter().peekable();
// while let Some(event) = iter.next() {
// resolutions.push(Resolution::new(cast, event, iter.peek()));
// }
self
}