diff --git a/gamelog.ron b/gamelog.ron index 2db62ba..f347e70 100644 --- a/gamelog.ron +++ b/gamelog.ron @@ -2353,7 +2353,7 @@ terrain: Yards(13), ), Play( - action: FleaFlicker, # Mistake + action: FleaFlicker, // Mistake down: Third, terrain: Yards(13), ), @@ -2431,7 +2431,7 @@ ), Game( version: "0.7.1", - flags: [Interval(4)] + flags: [Interval(4)], events: [ Quarter(First), Kickoff(ArizonaState), @@ -2594,7 +2594,7 @@ events: [ Quarter(First), Kickoff(Syracuse), - Penalty(Yards(15)) + Penalty(Yards(15)), Play( action: HalfbackSweep, down: Second, diff --git a/gamelog/src/action.rs b/gamelog/src/action.rs index a450b13..181254e 100644 --- a/gamelog/src/action.rs +++ b/gamelog/src/action.rs @@ -15,6 +15,7 @@ pub enum Action { PlayActionComebacks, PlayActionPowerZero, PowerZero, + Punt, SlantBubble, SlotOut, SpeedOption, diff --git a/gamelog/src/game.rs b/gamelog/src/game.rs index 28b6584..175d369 100644 --- a/gamelog/src/game.rs +++ b/gamelog/src/game.rs @@ -333,6 +333,7 @@ impl Period { #[derive(Debug, Deserialize, Clone, PartialEq)] pub enum Flags { ClockBleed(Team), + Gameplan(u8), IgnoreActions, IgnoreTeam(Team), IgnoreScore,