-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,15 @@ local MYSLOT_AUTHOR = "Boshi Lian <[email protected]>" | |
|
||
local MYSLOT_VER = 42 | ||
|
||
-- TWW Beta Compat code (fix and cleanup below later) | ||
local GetNumSpellTabs = C_SpellBook and C_SpellBook.GetNumSpellBookSkillLines or GetNumSpellTabs | ||
local GetSpellTabInfo = C_SpellBook and C_SpellBook.GetSpellBookSkillLineInfo or GetSpellTabInfo | ||
local PickupSpell = C_Spell and C_Spell.PickupSpell or PickupSpell | ||
local PickupItem = C_Item and C_Item.PickupItem or PickupItem | ||
local GetSpellInfo = C_Spell and C_Spell.GetSpellName or GetSpellInfo | ||
local GetSpellLink = C_Spell and C_Spell.GetSpellLink or GetSpellLink | ||
-- TWW Beta Compat End | ||
|
||
-- local MYSLOT_IS_DEBUG = true | ||
local MYSLOT_LINE_SEP = IsWindowsClient() and "\r\n" or "\n" | ||
local MYSLOT_MAX_ACTIONBAR = 180 | ||
|