Fix agility overhead icons
This commit is contained in:
@@ -180,14 +180,14 @@ public class PlayerIndicatorsOverlay extends Overlay
|
|||||||
textLocation.getY() - height),
|
textLocation.getY() - height),
|
||||||
ImageUtil.resizeImage(agilityIcon, height, height));
|
ImageUtil.resizeImage(agilityIcon, height, height));
|
||||||
}
|
}
|
||||||
else if (level >= plugin.getAgilitySecondThreshold())
|
if (level >= plugin.getAgilitySecondThreshold())
|
||||||
{
|
{
|
||||||
OverlayUtil.renderImageLocation(graphics,
|
OverlayUtil.renderImageLocation(graphics,
|
||||||
new Point(textLocation.getX() + agilityIcon.getWidth() + width,
|
new Point(textLocation.getX() + agilityIcon.getWidth() + width,
|
||||||
textLocation.getY() - height),
|
textLocation.getY() - height),
|
||||||
ImageUtil.resizeImage(agilityIcon, height, height));
|
ImageUtil.resizeImage(agilityIcon, height, height));
|
||||||
}
|
}
|
||||||
else if (level < plugin.getAgilityFirstThreshold())
|
if (level < plugin.getAgilityFirstThreshold())
|
||||||
{
|
{
|
||||||
OverlayUtil.renderImageLocation(graphics,
|
OverlayUtil.renderImageLocation(graphics,
|
||||||
new Point(textLocation.getX() + 5 + width,
|
new Point(textLocation.getX() + 5 + width,
|
||||||
|
|||||||
Reference in New Issue
Block a user