Unhide raids widgets on plugin shutdown

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
Tomas Slusny
2019-02-07 19:23:06 +01:00
parent 95640a6ed9
commit c238926ca7

View File

@@ -166,6 +166,12 @@ public class RaidsPlugin extends Plugin
inRaidChambers = false;
raid = null;
timer = null;
final Widget widget = client.getWidget(WidgetInfo.RAIDS_POINTS_INFOBOX);
if (widget != null)
{
widget.setHidden(false);
}
}
@Subscribe