Skip to content

Commit b9eb199

Browse files
committed
Fix missed validation messages
1 parent 8843b6f commit b9eb199

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

locales/en/apgames.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4999,6 +4999,7 @@
49994999
"LABEL_COLLECTION": "Player {{playerNum}}'s pyramids",
50005000
"MUST_PASS": "Once you have passed, you must continue passing.",
50015001
"NOPASS": "You cannot pass while you have legal moves.",
5002+
"PARTIAL_CLAIM": "Click an accessible target pyramid to claim it.",
50025003
"PARTIAL_MOVE": "Click an accessible destination pyramid.",
50035004
"VALID_PLACEMENT": "Looks like a good placement.",
50045005
"VALID_PLAY": "Looks like a good play."

src/games/stawvs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ export class StawvsGame extends GameBase {
537537
const cell0 = cells[0];
538538
if (!this.hasOwner(cell0) || this.getOwner(cell0) !== this.currplayer) {
539539
result.valid = false;
540-
result.message = i18next.t("apgames:validation.stawvs.BAD_START", {m});
540+
result.message = i18next.t("apgames:validation.stawvs.BAD_START");
541541
return result;
542542
}
543543

0 commit comments

Comments
 (0)