diff options
Diffstat (limited to 'src/entities/wordRock.js')
-rw-r--r-- | src/entities/wordRock.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entities/wordRock.js b/src/entities/wordRock.js index 96d8982..0897e35 100644 --- a/src/entities/wordRock.js +++ b/src/entities/wordRock.js @@ -4,6 +4,6 @@ game.createWordRock = () => { wordRock.addComponent(game.components.Appearance({rot: 0, width: 100, height: 100})); wordRock.addComponent(game.components.Pushable({pushable: true})); wordRock.addComponent(game.components.Alive()); - wordRock.sprite = game.sprites.wordRock; + wordRock.addComponent(game.components.Sprite({spriteName: "wordRock"})) return wordRock; } |