lenonk / ElvUI_SpellBinder

Note: I no longer have a WoW acount, and therefore can no longer maintain this addon. If you would like to become the maintainer, be my guest! This is a WoW addon that provides Clique like functionality specifically for ElvUI users. It's still currently Alpha, but most of the functionality is there, and it seems solid. Support for hovercasting to come soon.
Other
0 stars 2 forks source link

Paladin Contemplation Error Message #9

Closed LazyNinja716 closed 5 years ago

LazyNinja716 commented 5 years ago

I keep getting a message regarding the Contemplation spell/ability for paladins every time I go through a load screen. The message says:

ElvUI_SpellBinder: Contemplation [121183] is not flagged as helpful or harmful. Ignoring!

while it's not a big problem, it's just a tad annoying I guess. Not sure how to fix it.

Thanks

lenonk commented 5 years ago

I didn’t know that even existed. Since it’s not something you’d ever really want to bind, just open ElvUI_SpellBinder/modules/ExtraTables.lua and add it to the blacklist, like this:

addon.Blacklist = {

[83958] = true,

[125439] = true,

[6603] = true,

[75] = true,

[1804] = true,

[121183] = true

}

That will make the message go away.

From: LazyNinja716 notifications@github.com Sent: Saturday, December 15, 2018 5:35 AM To: lenonk/ElvUI_SpellBinder ElvUI_SpellBinder@noreply.github.com Cc: Subscribed subscribed@noreply.github.com Subject: [lenonk/ElvUI_SpellBinder] Contemplation Error (#9)

I keep getting a message regarding the Contemplation spell/ability for paladins every time I go through a load screen. The message says:

ElvUI_SpellBinder: Contemplation [121183] is not flagged as helpful or harmful. Ignoring!

while it's not a big problem, it's just a tad annoying I guess. Not sure how to fix it.

Thanks

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/lenonk/ElvUI_SpellBinder/issues/9 , or mute the thread https://github.com/notifications/unsubscribe-auth/ABIIJd8uep3S_VBjT0jLkN1Z5nejt-NLks5u5N5VgaJpZM4ZUsiU . https://github.com/notifications/beacon/ABIIJT39aX2mojb3y3oZCHvNAkT5HrXdks5u5N5VgaJpZM4ZUsiU.gif

LazyNinja716 commented 5 years ago

I didn’t know that even existed. Since it’s not something you’d ever really want to bind, just open ElvUI_SpellBinder/modules/ExtraTables.lua and add it to the blacklist, like this: addon.Blacklist = { [83958] = true, [125439] = true, [6603] = true, [75] = true, [1804] = true, [121183] = true } That will make the message go away. From: LazyNinja716 notifications@github.com Sent: Saturday, December 15, 2018 5:35 AM To: lenonk/ElvUI_SpellBinder ElvUI_SpellBinder@noreply.github.com Cc: Subscribed subscribed@noreply.github.com Subject: [lenonk/ElvUI_SpellBinder] Contemplation Error (#9) I keep getting a message regarding the Contemplation spell/ability for paladins every time I go through a load screen. The message says: ElvUI_SpellBinder: Contemplation [121183] is not flagged as helpful or harmful. Ignoring! while it's not a big problem, it's just a tad annoying I guess. Not sure how to fix it. Thanks — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub <#9> , or mute the thread https://github.com/notifications/unsubscribe-auth/ABIIJd8uep3S_VBjT0jLkN1Z5nejt-NLks5u5N5VgaJpZM4ZUsiU . https://github.com/notifications/beacon/ABIIJT39aX2mojb3y3oZCHvNAkT5HrXdks5u5N5VgaJpZM4ZUsiU.gif

Great thanks a lot :) will do that. Cheers.