summaryrefslogtreecommitdiff
path: root/src/entities/floor.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/entities/floor.js')
-rw-r--r--src/entities/floor.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entities/floor.js b/src/entities/floor.js
index 3f6b9f6..95cbcf2 100644
--- a/src/entities/floor.js
+++ b/src/entities/floor.js
@@ -1,6 +1,6 @@
game.createFloor = () => {
const floor = game.Entity();
- floor.addComponent(game.components.LoadPriority({priority: 5}));
+ floor.addComponent(game.components.LoadPriority({priority: 6}));
floor.addComponent(game.components.Appearance({rot: 0, width: 100, height: 100}));
floor.addComponent(game.components.Alive());
floor.addComponent(game.components.Sprite({spriteName: "floor"}))