Fix autocracy bonus accidentally being disabled (#4572)

This commit is contained in:
Xander Lenstra 2021-07-20 08:26:46 +02:00 committed by GitHub
parent 1b397f0583
commit 2db2dc0db7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -137,7 +137,7 @@ object BattleDamage {
}
}
for (unique in attacker.getCivInfo().getMatchingUniques("[]% attack strength to all [] units for [] turns")) {
for (unique in attacker.getCivInfo().getMatchingUniques("+[]% attack strength to all [] units for [] turns")) {
if (attacker.matchesCategory(unique.params[1])) {
modifiers.add("Temporary Bonus", unique.params[0].toInt())
}