diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-10-06 13:29:28 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-12-10 18:16:55 +0100 |
commit | 5b9785d5a91f8756ffe401ac2305d49fc378478a (patch) | |
tree | bd09ad67348ba9443c6b4d6dd45dcce46b78ee1a /play.js | |
parent | 21f293f689217f36e53ba00bc5da9300ad173bc2 (diff) | |
download | plantagenet-5b9785d5a91f8756ffe401ac2305d49fc378478a.tar.gz |
Remove useless semicolons.
Diffstat (limited to 'play.js')
-rw-r--r-- | play.js | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -372,14 +372,12 @@ function count_favour(type) { for (let x = first_locale; x < last_locale; x++) { if (data.locales[x].type !== type) continue - if (view.pieces.favourl.includes(x)) n += 1 if (view.pieces.favoury.includes(x)) n -= 1 } - - return n; + return n } function is_vassal_ready(vassal) { |