Fix silo storage calculation
This commit is contained in:
parent
c4662dba5b
commit
3f7fe8c5cf
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ app.game =
|
||||||
availableSiloStorage: ->
|
availableSiloStorage: ->
|
||||||
space = 50
|
space = 50
|
||||||
for tile in app.game.map
|
for tile in app.game.map
|
||||||
space += tile.spaceProvided if tile.spaceProvided
|
space += tile.entity.spaceProvided if tile.entity
|
||||||
space
|
space
|
||||||
|
|
||||||
usedSiloStorage: ->
|
usedSiloStorage: ->
|
||||||
|
|
Loading…
Reference in a new issue