mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-07-21 22:17:38 +00:00
rabbit
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user