소스 검색

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();
             }