summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--play.js2
-rw-r--r--rules.js1
2 files changed, 2 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());
diff --git a/rules.js b/rules.js
index 63ab65a..44bd395 100644
--- a/rules.js
+++ b/rules.js
@@ -3027,6 +3027,7 @@ function goto_themistocles() {
where: game.where,
transport: game.transport,
};
+ game.transport = 0
goto_greek_movement(false, true, THEMISTOCLES);
}