diff --git a/netcode/index.ts b/netcode/index.ts index 14ecc43..15ce32a 100644 --- a/netcode/index.ts +++ b/netcode/index.ts @@ -181,14 +181,6 @@ export function lockCard(card: Card) { data_type: "lock_card", data: card.uuid })) - card.effects.forEach(e => { - if (e.effect_type !== EffectType.SUICIDE && e.usable && [CardEffects.DAMAGE, CardEffects.GOLD, CardEffects.HEAL].includes(e.effect)) { - for (let i = 0; i < e.amount; i++) { - useEffect(e) - } - - } - }) } export function useEffect(effect: Effect, target?: Effect | Card | Player | Team) {