Merge pull request #7742 from deathbeam/skip-barrows-local-player
Do not draw yellow dot for local player in barrows plugin
This commit is contained in:
@@ -94,6 +94,12 @@ class BarrowsOverlay extends Overlay
|
||||
final List<Player> players = client.getPlayers();
|
||||
for (Player player : players)
|
||||
{
|
||||
if (player == local)
|
||||
{
|
||||
// Skip local player as we draw square for it later
|
||||
continue;
|
||||
}
|
||||
|
||||
net.runelite.api.Point minimapLocation = player.getMinimapLocation();
|
||||
if (minimapLocation != null)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user