1 parent f285c11 commit 1aa4d92Copy full SHA for 1aa4d92
2 files changed
src/puzzle/Bank.js
@@ -268,9 +268,6 @@ pzpr.classmgr.makeCommon({
268
},
269
270
isNoop: function() {
271
- if (this.num === null) {
272
- return false;
273
- }
274
return this.old === this.num;
275
276
src/variety/snakeegg.js
@@ -373,6 +373,13 @@
373
isBankEdit: true,
374
disInputHatena: true,
375
376
+ isNoop: function() {
377
+ if (this.num === null) {
378
+ return false;
379
+ }
380
+ return this.old === this.num;
381
+ },
382
+
383
isModify: function(lastope) {
384
if (
385
lastope.isBankEdit &&
0 commit comments