diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-01-28 22:51:31 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 13:02:39 +0100 |
commit | 7f68f6bcc1ac1486d7e518ace6786d3105c72cac (patch) | |
tree | dbec31d3a2d18b7d05604f3c76272010596fb91a | |
parent | 25441889e83ce41fe273c735c4ba0a52f8bfee44 (diff) | |
download | nevsky-7f68f6bcc1ac1486d7e518ace6786d3105c72cac.tar.gz |
Fix formatting.
-rw-r--r-- | rules.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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}.`) } |