Fix Great General counter not decreasing upon spawning a general (#10882)

* Fix Great General counter not decreasing upon spawning a general

* Actually, screw it, might as well trmove this whole section
This commit is contained in:
SeventhM 2024-01-07 06:07:04 -08:00 committed by GitHub
parent 1b6d75c4db
commit 68786d7603
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,11 +42,6 @@ object BackwardCompatibility {
if (pointsForNextGreatGeneral >= pointsForNextGreatGeneralCounter["Great General"]) {
pointsForNextGreatGeneralCounter["Great General"] = pointsForNextGreatGeneral
} else pointsForNextGreatGeneral = pointsForNextGreatGeneralCounter["Great General"]
if (greatGeneralPoints >= greatGeneralPointsCounter["Great General"]) {
greatGeneralPointsCounter["Great General"] = greatGeneralPoints
} else greatGeneralPoints = greatGeneralPointsCounter["Great General"]
}
}