mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-14 17:58:01 +00:00
Merge branch 'triggerfix' into 'master'
Fix TriggerTapsForMana Produced param See merge request core-developers/forge!3338
This commit is contained in:
@@ -101,10 +101,9 @@ public class TriggerTapsForMana extends Trigger {
|
||||
if (!this.getHostCard().hasChosenColor() || !produced.contains(MagicColor.toShortString(this.getHostCard().getChosenColor()))) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
if (!produced.contains(MagicColor.toShortString(this.getParam("Produced")))) {
|
||||
} else if (!produced.contains(MagicColor.toShortString(this.getParam("Produced")))) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user