diff options
Diffstat (limited to 'src/entities/wordBigBlue.js')
-rw-r--r-- | src/entities/wordBigBlue.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/entities/wordBigBlue.js b/src/entities/wordBigBlue.js index b6dd661..15aaa0e 100644 --- a/src/entities/wordBigBlue.js +++ b/src/entities/wordBigBlue.js @@ -4,6 +4,7 @@ game.createWordBigBlue = () => { wordBigBlue.addComponent(game.components.Appearance({rot: 0, width: 100, height: 100})); wordBigBlue.addComponent(game.components.Pushable({pushable: true})); wordBigBlue.addComponent(game.components.Alive()); - wordBigBlue.addComponent(game.components.Sprite({spriteName: "wordBigBlue"})) + wordBigBlue.addComponent(game.components.Sprite({spriteName: "wordBigBlue"})); + wordBigBlue.addComponent(game.components.Noun({select: "bigblue"})); return wordBigBlue; -} +}; |