diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-05-11 13:16:56 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 12:42:59 +0100 |
commit | 7a2a4b04db314047f486f1c25d474064dc02b745 (patch) | |
tree | 941d41d9ca0359731168d2bf1b7f75e2ac24eb08 /rules.js | |
parent | 305837ab0f083dd7f9f054db26ce3db10c80921a (diff) | |
download | 300-earth-and-water-7a2a4b04db314047f486f1c25d474064dc02b745.tar.gz |
300 tweak royal road
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2187,7 +2187,6 @@ states.the_royal_road_select = { gen_action(view, 'city', EPHESOS); }, city: function (city) { - push_undo(); if (count_greek_armies(city) > 0) { log("Persia removes all Greek armies in " + city + "."); move_greek_army(city, RESERVE, count_greek_armies(city)); @@ -2212,10 +2211,10 @@ states.the_royal_road_place = { }, city: function (city) { push_undo(); - log("Persia places 1 army in " + city + "."); move_persian_army(RESERVE, city, 1); }, next: function () { + log("Persia places " + count_persian_armies(game.where) + " armies in " + game.where + "."); clear_undo(); game.where = null; end_persian_operation(); |