Skip to content

Commit bc3072d

Browse files
committed
Fix CLAIM result in a couple games
1 parent 1f84ad6 commit bc3072d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

locales/en/apresults.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@
137137
"majorities_D": "{{player}} claimed the descending direction.",
138138
"meg": "{{player}} has taken the ball and placed it at {{where}}.",
139139
"penguin": "The penguin at {{where}} claimed the ball!",
140+
"toguz": "Pit {{pit}} became a tuz.",
140141
"veletas": "Shooter at {{where}} is trapped and is claimed by {{who}}."
141142
},
142-
"CLAIM_TOGUZ": "Pit {{pit}} became a tuz.",
143143
"CONNECT": {
144144
"pontedd": "{{player}} placed a bridge between {{left}} and {{right}}."
145145
},

src/games/acity.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1116,7 +1116,7 @@ export class ACityGame extends GameBase {
11161116
node.push(i18next.t("apresults:PLACE.complete", {player: name, where: r.where, what: r.what}));
11171117
break;
11181118
case "claim":
1119-
node.push(i18next.t("apresults:CLAIM", {player: name, where: r.where}));
1119+
node.push(i18next.t("apresults:CLAIM.default", {player: name, where: r.where}));
11201120
break;
11211121
case "eog":
11221122
node.push(i18next.t("apresults:EOG.default"));

src/games/toguz.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ export class ToguzGame extends GameBase {
518518
resolved = true;
519519
break;
520520
case "claim":
521-
node.push(i18next.t("apresults:CLAIM_TOGUZ", {pit: r.where}));
521+
node.push(i18next.t("apresults:CLAIM.toguz", {pit: r.where}));
522522
resolved = true;
523523
break;
524524
case "capture":

0 commit comments

Comments
 (0)