diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-07-12 22:19:35 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-07-12 22:19:35 +0200 |
commit | 3ee3422b88c21f4ccd9b78f0194f3cc6012755a7 (patch) | |
tree | 0585faf41b7337b4ad5319759b73f53ca5acc201 /rules.js | |
parent | 7a51cb9add43c5e87e5ff685ab2800976629e122 (diff) | |
download | time-of-crisis-3ee3422b88c21f4ccd9b78f0194f3cc6012755a7.tar.gz |
Fix typo in mob growth.
Diffstat (limited to 'rules.js')
-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() }, |