diff --git a/core/src/game.rs b/core/src/game.rs index 9520ecf3..e031fa3d 100644 --- a/core/src/game.rs +++ b/core/src/game.rs @@ -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 }