mirror of
https://github.com/yairm210/Unciv.git
synced 2025-01-07 14:02:48 +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:
parent
f78fd7e665
commit
38cf71a7ab
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user