overlay util: remove white outline on minimap dots
This commit is contained in:
@@ -56,11 +56,10 @@ public class OverlayUtil
|
||||
|
||||
public static void renderMinimapLocation(Graphics2D graphics, Point mini, Color color)
|
||||
{
|
||||
graphics.setColor(Color.BLACK);
|
||||
graphics.fillOval(mini.getX(), mini.getY() + 1, 5, 5);
|
||||
graphics.setColor(color);
|
||||
graphics.fillOval(mini.getX(), mini.getY(), 5, 5);
|
||||
graphics.setColor(Color.WHITE);
|
||||
graphics.setStroke(new BasicStroke(1));
|
||||
graphics.drawOval(mini.getX(), mini.getY(), 5, 5);
|
||||
}
|
||||
|
||||
public static void renderTextLocation(Graphics2D graphics, Point txtLoc, String text, Color color)
|
||||
|
||||
Reference in New Issue
Block a user