This commit is contained in:
@@ -53,10 +53,10 @@ const isSelf = computed(
|
||||
const isSelfTurn = computed(() => isSelf && isPlayerTurn);
|
||||
|
||||
const cardTokens = computed(() =>
|
||||
props.game.currentTurn.tokens.filter((t) =>
|
||||
[CardEffects.SACRIFICE, CardEffects.PREPARE, CardEffects.STUN].includes(
|
||||
t.effect
|
||||
)
|
||||
props.game.currentTurn.tokens.filter(
|
||||
(t) =>
|
||||
[CardEffects.PREPARE, CardEffects.STUN].includes(t.effect) ||
|
||||
(CardEffects.SACRIFICE == t.effect && isSelf)
|
||||
)
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user