Unable to move mobile health bars in the EC

TimStTimSt Posts: 1,904
Unable to move mobile health bars in the EC after the latest client patch.

Before the patch there was an Extract/Move button on a mobile's health bar.


After the patch the button is gone.


The regression is in source\mobilehealthbar.lua at line 375
if Interface.ShowCloseExtract and MobileHealthBar.Handled[mobileId] then
should be
if Interface.ShowCloseExtract and MobileHealthBar.Handled[mobileId] ~= nil then
that is because the code within the if statement
WindowSetShowing(windowName .. "CloseButton", MobileHealthBar.Handled[mobileId])
WindowSetShowing(windowName .. "Extract", not MobileHealthBar.Handled[mobileId])
needs MobileHealthBar.Handled[mobileId] to be false in order to show the Extract button.




Comments

Sign In or Register to comment.