summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-01-28 22:51:31 +0100
committerTor Andersson <tor@ccxvii.net>2023-02-18 13:02:39 +0100
commit7f68f6bcc1ac1486d7e518ace6786d3105c72cac (patch)
treedbec31d3a2d18b7d05604f3c76272010596fb91a
parent25441889e83ce41fe273c735c4ba0a52f8bfee44 (diff)
downloadnevsky-7f68f6bcc1ac1486d7e518ace6786d3105c72cac.tar.gz
Fix formatting.
-rw-r--r--rules.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/rules.js b/rules.js
index d7274a8..cab3922 100644
--- a/rules.js
+++ b/rules.js
@@ -5547,7 +5547,7 @@ function end_supply_lodya() {
function log_lodya() {
if (game.flags.lodya === 0)
- log("C${AOW_RUSSIAN_LODYA}: Boats as 2 Boats each.")
+ log(`C${AOW_RUSSIAN_LODYA}: Boats as 2 Boats each.`)
else if (game.flags.lodya < 0)
log(`C${AOW_RUSSIAN_LODYA}: ${-game.flags.lodya} Boats as Ships.`)
else
@@ -6309,9 +6309,9 @@ states.ravage = {
function ravage_location(here, there) {
if (here !== there) {
if (is_teutonic_lord(game.command))
- log(`Ravaged %${there} with C${AOW_TEUTONIC_RAIDERS}.`)
+ log(`Ravaged %${there} (C${AOW_TEUTONIC_RAIDERS}).`)
else
- log(`Ravaged %${there} with C${which_lord_capability(game.command, AOW_RUSSIAN_RAIDERS)}.`)
+ log(`Ravaged %${there} (C${which_lord_capability(game.command, AOW_RUSSIAN_RAIDERS)}).`)
} else {
log(`Ravaged %${there}.`)
}