Skip to content

Commit 8843b6f

Browse files
authored
Merge pull request #271 from mcdemarco/develop
Fix the fix for multiplayer scoring in Stawvs
2 parents 8d8cbc4 + 1d09113 commit 8843b6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/games/stawvs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1045,7 +1045,7 @@ export class StawvsGame extends GameBase {
10451045
name: i18next.t("apgames:status.SCORES"),
10461046
scores: [this.getPlayerScore(1), this.getPlayerScore(2)]
10471047
};
1048-
for (let n = 1; n <= this.numplayers; n++) {
1048+
for (let n = 3; n <= this.numplayers; n++) {
10491049
iscoreObj.scores.push(this.getPlayerScore(n));
10501050
}
10511051
return [iscoreObj];

0 commit comments

Comments
 (0)