Explorar o código

Fix direction check on fisherman

ApisNecros hai 1 ano
pai
achega
f3c949526d
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      starfish.js

+ 2 - 1
starfish.js

@@ -818,7 +818,8 @@ class CodeBox {
      * @see https://esolangs.org/wiki/Starfish#Fisherman
      */
     Fisherman() {
-        if (this.curr_direction[0]) {
+        // Are we moving up or down?
+        if (!!this.curr_direction[1]) {
             if (this.dirWasLeft) {
                 this.MoveLeft();
             }