mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-04 07:17:50 +07:00
You can no longer have negative science per turn, even if you have a huge gold deficit (what does "negative science" even mean?)
This commit is contained in:
@ -59,6 +59,7 @@ class CivilizationInfo {
|
||||
statsForTurn.culture += statsForTurn.happiness / 2
|
||||
|
||||
if (statsForTurn.gold < 0) statsForTurn.science += statsForTurn.gold
|
||||
if(statsForTurn.science<0) statsForTurn.science=0f
|
||||
return statsForTurn
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user