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