@@ -36,6 +36,7 @@ import net.runelite.api.Player;
|
|||||||
import net.runelite.api.coords.WorldPoint;
|
import net.runelite.api.coords.WorldPoint;
|
||||||
import net.runelite.api.events.ConfigChanged;
|
import net.runelite.api.events.ConfigChanged;
|
||||||
import net.runelite.api.events.GameTick;
|
import net.runelite.api.events.GameTick;
|
||||||
|
import net.runelite.api.util.Text;
|
||||||
import net.runelite.client.Notifier;
|
import net.runelite.client.Notifier;
|
||||||
import net.runelite.client.config.ConfigManager;
|
import net.runelite.client.config.ConfigManager;
|
||||||
import net.runelite.client.eventbus.EventBus;
|
import net.runelite.client.eventbus.EventBus;
|
||||||
@@ -52,11 +53,11 @@ import java.util.List;
|
|||||||
|
|
||||||
|
|
||||||
@PluginDescriptor(
|
@PluginDescriptor(
|
||||||
name = "Drop Party",
|
name = "Drop Party",
|
||||||
description = "Marks where a user ran, for drop partys",
|
description = "Marks where a user ran, for drop partys",
|
||||||
tags = {"Drop", "Party", "marker", "player"},
|
tags = {"Drop", "Party", "marker", "player"},
|
||||||
type = PluginType.UTILITY,
|
type = PluginType.UTILITY,
|
||||||
enabledByDefault = false
|
enabledByDefault = false
|
||||||
)
|
)
|
||||||
@Singleton
|
@Singleton
|
||||||
@Slf4j
|
@Slf4j
|
||||||
@@ -137,7 +138,7 @@ public class DropPartyPlugin extends Plugin
|
|||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (player.getName().equalsIgnoreCase(playerName))
|
if (Text.standardize(player.getName()).equalsIgnoreCase(playerName))
|
||||||
{
|
{
|
||||||
runningPlayer = player;
|
runningPlayer = player;
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user