fix reset function

This commit is contained in:
2024-06-26 22:44:46 -05:00
parent ac2f09d219
commit a7cf45e466
+2 -2
View File
@@ -79,7 +79,7 @@ class Encoder {
}
reset() {
this.pickupTable = this.config.default_table;
this.table = this.config.default_table;
}
}
@@ -96,7 +96,7 @@ class Decoder {
}
reset() {
this.pickupTable = this.config.default_table;
this.table = this.config.default_table;
}
}