- Fixed logic error with DamageAmount parameter of DamageDone triggers.

- Fixed TriggerZones of Pain Magnification.
This commit is contained in:
Sloth
2011-08-23 11:47:56 +00:00
parent 90c4b458a0
commit 71763271aa
2 changed files with 2 additions and 2 deletions

View File

@@ -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: ");