View Single Post
06-12-22, 02:13 PM   #4
Kanegasi
A Molten Giant
 
Kanegasi's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2007
Posts: 666
Open CancelAuras.lua in any text editor.
(You can find this file at World of Warcraft\_retail_\Interface\AddOns\CancelAuras)

Find this part:

Lua Code:
  1. function cancelauras_OnEvent(this, event, ...)
  2.     for i=1, 40 do

Change it to this:

Lua Code:
  1. function cancelauras_OnEvent(this, event, ...)
  2.     if IsInInstance() then return end
  3.     for i=1, 40 do
  Reply With Quote