summaryrefslogtreecommitdiff
path: root/worker.js
diff options
context:
space:
mode:
Diffstat (limited to 'worker.js')
-rw-r--r--worker.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/worker.js b/worker.js
index f05037c..43162a7 100644
--- a/worker.js
+++ b/worker.js
@@ -294,7 +294,7 @@ amqp.connect(RABBITMQ_URI).then(async (rabbit) => {
if (t.type == "HealTarget"
&& t.payload.IsHero == 1
&& ["Buff_SpawnStage_Recharge", "Buff_Ace"].indexOf(t.payload.Source) == -1 // TODO LOL what?
- && t.payload.Team != t.payload.TargetTeam) // enemies "heal" Ardan due to his perk WTF
+ && t.payload.Team == t.payload.TargetTeam) // enemies "heal" Ardan due to his perk WTF
t.actor = participants.filter((p) =>
p.actor == t.payload.Actor
&& p.team == t.payload.Team)[0];