diff --git a/internal/game/oracle.go b/internal/game/oracle.go index f16d549..8e61a64 100644 --- a/internal/game/oracle.go +++ b/internal/game/oracle.go @@ -6,7 +6,7 @@ func OracleUpkeep(c *Card, g *Game) { switch c.Type { case Eight: c.Sick = true - if c.Counters > 3 { + if c.Counters >= 3 { g.GameBoard.Remove(c) } default: