mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 11:48:02 +00:00
- Fixed logic error with DamageAmount parameter of DamageDone triggers.
- Fixed TriggerZones of Pain Magnification.
This commit is contained in:
@@ -59,7 +59,7 @@ public class Trigger_DamageDone extends Trigger {
|
||||
int operand = Integer.parseInt(fullParam.substring(2));
|
||||
int actualAmount = (Integer) runParams.get("DamageAmount");
|
||||
|
||||
if (AllZoneUtil.compare(actualAmount, operator, operand))
|
||||
if (!AllZoneUtil.compare(actualAmount, operator, operand))
|
||||
return false;
|
||||
|
||||
System.out.print("DamageDone Amount Operator: ");
|
||||
|
||||
Reference in New Issue
Block a user