diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-01-07 15:04:57 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 13:02:38 +0100 |
commit | 7cc65af51edafc0949a579424512cb9701c6a4aa (patch) | |
tree | c40e40c2b7c205b48025147c7b679aea39eb341e | |
parent | 9525a86dad54268ddac78af3cf155cb97c7f4d88 (diff) | |
download | nevsky-7cc65af51edafc0949a579424512cb9701c6a4aa.tar.gz |
Fix Russian ravage by waterway.
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5569,7 +5569,7 @@ function can_action_ravage() { } if (this_lord_has_russian_raiders()) { - for (let there of data.locales[here].adjacent_by_trackway) + for (let there of data.locales[here].adjacent) // XXX has_enemy_lord redundant with is_friendly_locale in can_ravage_locale if (can_ravage_locale(there) && !has_enemy_lord(there)) return true |