mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 20:59:14 -08:00
Fixed tangle Wire. bug when 0 counter
This commit is contained in:
parent
cafd1091a8
commit
d4f8e6bc1e
1 changed files with 1 additions and 1 deletions
|
|
@ -105,7 +105,7 @@ class TangleWireEffect extends OneShotEffect<TangleWireEffect> {
|
|||
target.setRequired(true);
|
||||
target.setNotTarget(true);
|
||||
|
||||
if (player.chooseTarget(Outcome.Tap, target, source, game)) {
|
||||
if (amount > 0 && player.chooseTarget(Outcome.Tap, target, source, game)) {
|
||||
boolean abilityApplied = false;
|
||||
|
||||
for (UUID uuid : target.getTargets()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue