Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions locales/en/apgames.json
Original file line number Diff line number Diff line change
Expand Up @@ -4999,6 +4999,7 @@
"LABEL_COLLECTION": "Player {{playerNum}}'s pyramids",
"MUST_PASS": "Once you have passed, you must continue passing.",
"NOPASS": "You cannot pass while you have legal moves.",
"PARTIAL_CLAIM": "Click an accessible target pyramid to claim it.",
"PARTIAL_MOVE": "Click an accessible destination pyramid.",
"VALID_PLACEMENT": "Looks like a good placement.",
"VALID_PLAY": "Looks like a good play."
Expand Down
2 changes: 1 addition & 1 deletion src/games/stawvs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ export class StawvsGame extends GameBase {
const cell0 = cells[0];
if (!this.hasOwner(cell0) || this.getOwner(cell0) !== this.currplayer) {
result.valid = false;
result.message = i18next.t("apgames:validation.stawvs.BAD_START", {m});
result.message = i18next.t("apgames:validation.stawvs.BAD_START");
return result;
}

Expand Down