Fix silo storage calculation

This commit is contained in:
Ruben Müller 2014-12-07 13:22:35 +01:00
parent c4662dba5b
commit 3f7fe8c5cf
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ app.game =
availableSiloStorage: ->
space = 50
for tile in app.game.map
space += tile.spaceProvided if tile.spaceProvided
space += tile.entity.spaceProvided if tile.entity
space
usedSiloStorage: ->