summaryrefslogtreecommitdiff
path: root/play.js
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-10-11 00:55:51 +0200
committerTor Andersson <tor@ccxvii.net>2023-10-11 01:01:56 +0200
commitf990b698db82a08af663be271f34f2315680dd99 (patch)
tree5a8d0bd8b65d9d53713aeaf412ecdd0cefa1dbbc /play.js
parent64229dce6e3fac266a403f85eb690e421cc10cfb (diff)
download300-earth-and-water-f990b698db82a08af663be271f34f2315680dd99.tar.gz
Reset game.transport when playing Themistocles.
Diffstat (limited to 'play.js')
-rw-r--r--play.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/play.js b/play.js
index 55c5433..d36c503 100644
--- a/play.js
+++ b/play.js
@@ -381,7 +381,7 @@ function on_update() {
// add if not enough
for (let space in view.units) {
let list = elements[space];
- let n = view.units[space][index];
+ let n = view.units[space][index] | 0;
while (list.length < n) {
if (overflow.length > 0) {
list.unshift(overflow.pop());