We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 709a7ae commit 8282edcCopy full SHA for 8282edc
src/games/stawvs.ts
@@ -522,6 +522,7 @@ export class StawvsGame extends GameBase {
522
if (this.eliminated.indexOf(this.currplayer) > -1) {
523
//This would be caught by the next condition but why calculate the moves?
524
result.valid = true;
525
+ result.complete = 1;
526
result.message = i18next.t("apgames:validation._general.VALID_MOVE");
527
return result;
528
} else if (this.mode === "place" || this.moves()[0] !== "pass") {
@@ -530,6 +531,7 @@ export class StawvsGame extends GameBase {
530
531
532
} else {
533
534
535
536
537
}
0 commit comments