diff options
author | Logan Hunt <loganhunt@simponic.xyz> | 2022-04-20 12:31:37 -0600 |
---|---|---|
committer | Logan Hunt <loganhunt@simponic.xyz> | 2022-04-20 12:31:37 -0600 |
commit | 90c104092ff3cccb0a7d55555058d6dbc7422138 (patch) | |
tree | 5b65676e6b177da15209377ac6446f96c720e54a | |
parent | 3f6a14e142d551db503d8b1228fb2c7924164303 (diff) | |
download | bbiy-90c104092ff3cccb0a7d55555058d6dbc7422138.tar.gz bbiy-90c104092ff3cccb0a7d55555058d6dbc7422138.zip |
Fix is water/lava
-rw-r--r-- | src/systems/logic.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/systems/logic.js b/src/systems/logic.js index a29313f..e8854c1 100644 --- a/src/systems/logic.js +++ b/src/systems/logic.js @@ -33,6 +33,8 @@ game.system.Logic = (entitiesGrid) => { "wall": game.createWall, "bigblue": game.createBigBlue, "flag": game.createFlag, + "lava": game.createLava, + "water": game.createWater, }; const doOnRule = (rule, entities, direction) => { |