diff options
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5092,7 +5092,7 @@ states.grow_mobs = { push_undo() log("Mob grows in %" + where + ".") set_mobs(where, get_mobs(where) + 1) - game.count &= !(1 << where) + game.count &= ~(1 << where) if (game.count === 0) goto_flip_inactive_barbarians() }, |