This commit is contained in:
Ryan Barlow
2026-03-01 14:26:21 +00:00
parent 15bcc0241e
commit cd17df29fe
8 changed files with 23 additions and 61 deletions
+2 -2
View File
@@ -1277,7 +1277,7 @@ export class GameImpl implements Game {
}
allTeamCrownTicks(): ReadonlyMap<Team, number> {
return this._teamCrownTicks;
return new Map(this._teamCrownTicks);
}
addCrownTick(team: Team, amount: number): void {
@@ -1299,7 +1299,7 @@ export class GameImpl implements Game {
}
teamEliminationOrder(): Team[] {
return this._teamEliminationOrder;
return [...this._teamEliminationOrder];
}
recordTeamElimination(team: Team): void {