Fixed bug making enhancing religions impossible (#5040)

This commit is contained in:
Xander Lenstra 2021-08-31 17:22:39 +02:00 committed by GitHub
parent 9450fac423
commit 248145cf8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -246,7 +246,7 @@ class ReligionManager {
}
fun useProphetForEnhancingReligion(prophet: MapUnit) {
if (!mayFoundReligionNow(prophet)) return // How did you do this?
if (!mayEnhanceReligionNow(prophet)) return // How did you do this?
religionState = ReligionState.EnhancingReligion
}