eight disapears a turn sooner

This commit is contained in:
stryan 2021-07-26 11:52:43 -04:00
parent dff9f6ce60
commit bff4f57e86

View File

@ -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: