Remove unused comments

This commit is contained in:
Mitchell McCaffrey 2023-06-15 16:09:31 +10:00
parent 7b3e778ea5
commit 7e4b135a23

View File

@ -18,21 +18,16 @@ export default class Game {
} }
getPartyState(): PartyState { getPartyState(): PartyState {
// const result = await this.redis.json_hgetall(`game:${gameId}:partyState`);
const result = this.partyState; const result = this.partyState;
return result; return result;
} }
getGamePasswordHash(): string { getGamePasswordHash(): string {
// const result = await this.redis.get(`game:${gameId}:passwordHash`);
const result = this.passwordHash; const result = this.passwordHash;
return result; return result;
} }
setGamePasswordHash(hash: string): void { setGamePasswordHash(hash: string): void {
// const result = await this.redis.set(`game:${gameId}:passwordHash`, hash);
this.passwordHash = hash; this.passwordHash = hash;
} }