Fix : attempt to fix Rampage

This commit is contained in:
2024-07-31 10:19:51 +02:00
parent 73efadbaed
commit 540a34f211
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -274,7 +274,7 @@ export class TurnService {
if (
token.effect != CardEffects.DRAW_AND_DISCARD ||
(token.effect == CardEffects.DRAW_AND_DISCARD &&
token.times >= game.currentTurn.drawAndDiscardCurrentAmount)
token.times <= game.currentTurn.drawAndDiscardCurrentAmount)
) {
const index = game.currentTurn.tokens.findIndex((t) =>
t._id.equals(token._id),