diff --git a/game/state/handlers/gameplay.go b/game/state/handlers/gameplay.go index 7eec00e..0027b0a 100644 --- a/game/state/handlers/gameplay.go +++ b/game/state/handlers/gameplay.go @@ -44,6 +44,9 @@ func NewGamePlay() *GamePlay { } func (gp *GamePlay) Enter() { + gp.grid = game.Grid{} + gp.score = 0 + gp.dropTimer.SetInterval(0.3) gp.shapeQueue = game.NewShapeQueue() gp.nextShape = gp.shapeQueue.Next() gp.SpawnShape()