summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2021-05-11 13:16:56 +0200
committerTor Andersson <tor@ccxvii.net>2023-02-18 12:42:59 +0100
commit7a2a4b04db314047f486f1c25d474064dc02b745 (patch)
tree941d41d9ca0359731168d2bf1b7f75e2ac24eb08 /rules.js
parent305837ab0f083dd7f9f054db26ce3db10c80921a (diff)
download300-earth-and-water-7a2a4b04db314047f486f1c25d474064dc02b745.tar.gz
300 tweak royal road
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/rules.js b/rules.js
index eb1be0b..aaa511b 100644
--- a/rules.js
+++ b/rules.js
@@ -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();