diff options
-rw-r--r-- | play.js | 4 | ||||
-rw-r--r-- | rules.js | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -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]) + } } } @@ -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() }, |