summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--play.js4
-rw-r--r--rules.js2
2 files changed, 4 insertions, 2 deletions
diff --git a/play.js b/play.js
index 25ca516..f2b723a 100644
--- a/play.js
+++ b/play.js
@@ -1354,8 +1354,10 @@ function on_update() {
for (let tribe = 0; tribe < 5; ++tribe) {
for (let id = first_barbarian[tribe]; id <= last_barbarian[tribe]; ++id) {
let loc = get_barbarian_location(id)
- if (loc === army)
+ if (loc === army) {
+ ui.barbarians[id].classList.toggle("inactive", false)
stack.push(ui.barbarians[id])
+ }
}
}
diff --git a/rules.js b/rules.js
index aa5017c..f1fa955 100644
--- a/rules.js
+++ b/rules.js
@@ -4783,7 +4783,7 @@ states.support_check_emperor = {
region(where) {
push_undo()
game.count |= (1 << where)
- log("Reduce support level in %" + where + ".")
+ log("Reduced support level in %" + where + ".")
reduce_support(where)
goto_support_check_mobs()
},