瀏覽代碼

Fix direction check on fisherman

ApisNecros 1 年之前
父節點
當前提交
f3c949526d
共有 1 個文件被更改,包括 2 次插入1 次删除
  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();
             }