From 9197061096c9870d248e0d5a342244e4510b6247 Mon Sep 17 00:00:00 2001 From: "Eevee (Evelyn Woods)" Date: Sat, 5 Sep 2020 19:41:36 -0600 Subject: [PATCH] Don't stop when hitting a wall on a force floor --- js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/main.js b/js/main.js index f3d83ad..c08c7ab 100644 --- a/js/main.js +++ b/js/main.js @@ -365,7 +365,7 @@ class Level { player_direction && actor.last_move_was_force) { - direction_preference = [player_direction]; + direction_preference = [player_direction, actor.direction]; this._set_prop(actor, 'last_move_was_force', false); } else {