summaryrefslogtreecommitdiff
path: root/src/entities/wordWall.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/entities/wordWall.js')
-rw-r--r--src/entities/wordWall.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/entities/wordWall.js b/src/entities/wordWall.js
index ba97cec..6d4678b 100644
--- a/src/entities/wordWall.js
+++ b/src/entities/wordWall.js
@@ -2,6 +2,7 @@ game.createWordWall = () => {
const wordWall = game.Entity();
wordWall.addComponent(game.components.LoadPriority({priority: 3}));
wordWall.addComponent(game.components.Appearance({rot: 0, width: 100, height: 100}));
+ wordWall.addComponent(game.components.Pushable({pushable: true}));
wordWall.sprite = game.sprites.wordWall;
return wordWall;
}