diff --git a/server/src/objects/Team.ts b/server/src/objects/Team.ts index 668c820..da5f1f3 100644 --- a/server/src/objects/Team.ts +++ b/server/src/objects/Team.ts @@ -36,11 +36,13 @@ export class Team { }; - public resetHand(): void { + public reset(): void { /** - * Removes all the cards from the guesser's hand + * Resets all the per-game data related to this team */ this._hand = []; + this._questions = []; + this._answers = new Array(8).fill(``); }