Просмотр исходного кода

Fix broken 2D array reference

I (somehow) forgot how to properly reference a "cell" in a 2D array...
ApisNecros 1 год назад
Родитель
Сommit
b24369dd40
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      starfish.js

+ 1 - 1
starfish.js

@@ -194,7 +194,7 @@ class CodeBox {
     }
 
     Swim() {
-        const instruction = this.box[this.pointer[0], this.pointer[1]];
+        const instruction = this.box[this.pointer[0]][this.pointer[1]];
 
         if(this.stringMode != 0 && instruction != this.stringMode) {
             this.stack.Push(dec(instruction));