Hotswap Weakaura and Itemrack no longer work (Classic Era 1.15.4)
maximus210793 opened this issue ยท 10 comments
Hi,
Warrior Hotswap (https://wago.io/djN0VftGP/3) does not longer work since version update.
Chat Message with newest Version says: "ItemRack: Swap stopped. Something is on the cursor."
I am playing WoW Classic Era V1.15.4.
See also: #254
Thank you for fixing it.
both 4.2 and 4.21 are not working, they also miss this change in the ItemRackEquip.lua:
Change Line 283 in "ItemRackEquip.lua"
from
283: if swap[k]==0 then -- if intended to be empty
to
283: if swap[k]==0 or swap[k]=="0" then -- if intended to be empty
I have no clue what to do sry :(
I only know that the solution from #254 worked:
Change Line 283 in "ItemRackEquip.lua"
from
283: if swap[k]==0 then -- if intended to be empty
to
283: if swap[k]==0 or swap[k]=="0" then -- if intended to be empty
Update:
Version 4.21 now working for me.
But in the ItemRackEquip.lua it says in line 283: if swap[k]==0 then -- if intended to be empty
Did you fix it somewhere else in the code since it is not saying:
283: if swap[k]==0 or swap[k]=="0" then -- if intended to be empty
?
The PR had two different solutions and fixed it somewhere else.
See #259