Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Hunter/Freezing Trap.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
```
/script PetPassiveMode();
/script PetFollow();
/script if (UnitAffectingCombat("player")) then CastSpellByName("Feign Death") else if not (UnitAffectingCombat("player")) then CastSpellByName("Freezing Trap"); end
/script if (UnitAffectingCombat("player")) then CastSpellByName("Feign Death") elseif not (UnitAffectingCombat("player")) then CastSpellByName("Freezing Trap"); end
```


Expand All @@ -18,4 +18,4 @@
/cast Freezing Trap
/script if UnitAffectingCombat("player") then CastSpellByName("Feign Death") end
/script if UnitExists("pettarget") and CheckInteractDistance("target", 3) and UnitIsUnit("target", "pettarget") then PetPassiveMode(); else end
```
```