Don't show prayer orb hover overlay if prayer orb is hidden

This commit is contained in:
Unmoon
2018-09-04 17:32:56 +03:00
parent 8f5540d3c6
commit 07cca2e4eb

View File

@@ -98,7 +98,7 @@ class PrayerDoseOverlay extends Overlay
public Dimension render(Graphics2D graphics)
{
final Widget xpOrb = client.getWidget(WidgetInfo.MINIMAP_QUICK_PRAYER_ORB);
if (xpOrb == null)
if (xpOrb == null || xpOrb.isHidden())
{
return null;
}