summaryrefslogtreecommitdiff
path: root/src/components/map/elements/RoomTile.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/map/elements/RoomTile.js')
-rw-r--r--src/components/map/elements/RoomTile.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/components/map/elements/RoomTile.js b/src/components/map/elements/RoomTile.js
index 4d5e50fc..87dd2f03 100644
--- a/src/components/map/elements/RoomTile.js
+++ b/src/components/map/elements/RoomTile.js
@@ -1,16 +1,15 @@
import React from "react";
import {Rect} from "react-konva";
-import {ROOM_DEFAULT_COLOR, ROOM_IN_CONSTRUCTION_COLOR} from "../../../colors/index";
import Shapes from "../../../shapes/index";
import {TILE_SIZE_IN_PIXELS} from "../MapConstants";
-const RoomTile = ({tile, newTile}) => (
+const RoomTile = ({tile, color}) => (
<Rect
x={tile.positionX * TILE_SIZE_IN_PIXELS}
y={tile.positionY * TILE_SIZE_IN_PIXELS}
width={TILE_SIZE_IN_PIXELS}
height={TILE_SIZE_IN_PIXELS}
- fill={newTile ? ROOM_IN_CONSTRUCTION_COLOR : ROOM_DEFAULT_COLOR}
+ fill={color}
/>
);