mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-14 01:39:40 +07:00
Bug fix: Buildings not set to -1 by default correctly (#9635)
* Change the default cost of buildings and the default time of tile improvements * Bugfix: default building cost is now set to -1 as intended
This commit is contained in:
@ -30,7 +30,7 @@ import kotlin.math.pow
|
||||
class Building : RulesetStatsObject(), INonPerpetualConstruction {
|
||||
|
||||
override var requiredTech: String? = null
|
||||
override var cost: Int = 0
|
||||
override var cost: Int = -1
|
||||
|
||||
var maintenance = 0
|
||||
private var percentStatBonus: Stats? = null
|
||||
|
Reference in New Issue
Block a user