remove shitcard

This commit is contained in:
Kirill Ivlev 2024-11-27 21:20:34 +04:00
parent 6e7ffe7164
commit 2b59393d98
2 changed files with 1 additions and 3 deletions

View file

@ -262,7 +262,7 @@ export class BanPlayer extends GameCard {
export const gameCards: typeof GameCard[] = [ export const gameCards: typeof GameCard[] = [
DoubleTreasureCard, DoubleTreasureCard,
StolePrizeCard, StolePrizeCard,
ShitCard, // ShitCard,
LuckyCard, LuckyCard,
AvoidPenaltyCard, AvoidPenaltyCard,
BanPlayer, BanPlayer,

View file

@ -24,9 +24,7 @@ import {BeginVersusCommand} from "../game/commands/begin-versus.command";
@Injectable({ scope: Scope.TRANSIENT }) @Injectable({ scope: Scope.TRANSIENT })
export class QuizService { export class QuizService {
private readonly answerNumbers = Messages.answerNumbers;
private readonly logger = new Logger(QuizService.name); private readonly logger = new Logger(QuizService.name);
private AcceptAnswersFromAllMembers: boolean = true; // TODO: move this to configurable state
constructor( constructor(
@InjectModel(Question.name) private questionModel: Model<QuestionDocument>, @InjectModel(Question.name) private questionModel: Model<QuestionDocument>,
@InjectModel(QuestionStorage.name) @InjectModel(QuestionStorage.name)