Skip to content

Commit

Permalink
shimaguni: Fix encode/decode of missing snum
Browse files Browse the repository at this point in the history
  • Loading branch information
x-sheep committed Oct 17, 2023
1 parent b7bd7b8 commit 7002023
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/variety/shimaguni.js
Original file line number Diff line number Diff line change
Expand Up @@ -558,13 +558,17 @@
this.decodeAreaRoom();
this.decodeCellQnum();
this.decodeCellAns();
this.decodeCellSnum();
if (this.puzzle.klass.Cell.prototype.enableSubNumberArray) {
this.decodeCellSnum();
}
},
encodeData: function() {
this.encodeAreaRoom();
this.encodeCellQnum();
this.encodeCellAns();
this.encodeCellSnum();
if (this.puzzle.klass.Cell.prototype.enableSubNumberArray) {
this.encodeCellSnum();
}
}
},

Expand Down

1 comment on commit 7002023

@vercel
Copy link

@vercel vercel bot commented on 7002023 Oct 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

pzprjs – ./

pzprjs-git-main-robx.vercel.app
pzprjs.vercel.app
pzprjs-robx.vercel.app

Please sign in to comment.