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