diff options
Diffstat (limited to 'src/entities/wordLava.js')
-rw-r--r-- | src/entities/wordLava.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/entities/wordLava.js b/src/entities/wordLava.js index 573dd29..dc50bf3 100644 --- a/src/entities/wordLava.js +++ b/src/entities/wordLava.js @@ -3,6 +3,7 @@ game.createWordLava = () => { wordLava.addComponent(game.components.LoadPriority({priority: 3})); wordLava.addComponent(game.components.Appearance({rot: 0, width: 100, height: 100})); wordLava.addComponent(game.components.Pushable({pushable: true})); + wordLava.addComponent(game.components.Alive()); wordLava.sprite = game.sprites.wordLava; return wordLava; |