Commit 839cb3c8 authored by Ivaria's avatar Ivaria
Browse files

Fixed assignment of remapped spells when dragging from spell book

parent e77ee95c
......@@ -1120,12 +1120,16 @@ end
--
function VUHDO_lnfEditboxReceivedDrag(anEditBox)
local tName = nil;
local tType, tId, tId2 = GetCursorInfo();
local tType, tId, tId2, tId3 = GetCursorInfo();
if "item" == tType then
tName = GetItemInfo(tId) ;
elseif "spell" == tType then
tName = GetSpellBookItemName(tId, tId2);
if not tName then
tName = GetSpellInfo(tId3);
end
elseif "macro" == tType then
tName = GetMacroInfo(tId);
end
......
......@@ -13,6 +13,7 @@ Bugfixes:
-- Fixed vertical health bar display for units w/o a power bar
-- Fixed mana bar display after specialization activation
-- Fixed apostrophe issue for Priest 'Shadow Mend' in French language
-- Fixed assignment of remapped spells when dragging from spell book
Improvements:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment