Skip to content

Commit

Permalink
fix: Hide vanilla raid points box when inside chambers of xeric
Browse files Browse the repository at this point in the history
Since commit 08c816e, the varbit change event is fired after this widget is shown and inRaidChambers is always false at that point. This would prevent the vanilla point box from being hidden.
  • Loading branch information
kamielvf committed May 13, 2018
1 parent 42005ff commit b9d105f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public void onConfigChanged(ConfigChanged event)
@Subscribe
public void onWidgetHiddenChanged(WidgetHiddenChanged event)
{
if (!inRaidChambers || event.isHidden())
if (event.isHidden())
{
return;
}
Expand Down

0 comments on commit b9d105f

Please sign in to comment.