summaryrefslogtreecommitdiff
path: root/src/entities/wordKill.js
diff options
context:
space:
mode:
authorLogan Hunt <loganhunt@simponic.xyz>2022-04-05 17:33:25 -0600
committerLogan Hunt <loganhunt@simponic.xyz>2022-04-05 17:33:25 -0600
commit69596ba244d6959dfe188ce958542c062b475f75 (patch)
tree91888868f7aa62a6c4c09d8047b49414259e8624 /src/entities/wordKill.js
parent545e129c7411714e7b40c742a23409629c9f767f (diff)
downloadbbiy-69596ba244d6959dfe188ce958542c062b475f75.tar.gz
bbiy-69596ba244d6959dfe188ce958542c062b475f75.zip
Checkpoint with particles
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 7bc0972..283ce90 100644
--- a/src/entities/wordKill.js
+++ b/src/entities/wordKill.js
@@ -3,6 +3,7 @@ game.createWordKill = () => {
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.addComponent(game.components.Alive());
wordKill.sprite = game.sprites.wordKill;
return wordKill;
}