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