diff options
Diffstat (limited to 'src/components/app/map/groups/TileGroup.js')
| -rw-r--r-- | src/components/app/map/groups/TileGroup.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/app/map/groups/TileGroup.js b/src/components/app/map/groups/TileGroup.js index c41e78a4..0cd4ea59 100644 --- a/src/components/app/map/groups/TileGroup.js +++ b/src/components/app/map/groups/TileGroup.js @@ -20,7 +20,7 @@ const TileGroup = ({tile, newTile, inSimulation, roomLoad, onClick}) => { let color = ROOM_DEFAULT_COLOR; if (newTile) { color = ROOM_IN_CONSTRUCTION_COLOR; - } else if (inSimulation && roomLoad) { + } else if (inSimulation && roomLoad >= 0) { color = convertLoadToSimulationColor(roomLoad); } |
