Merge pull request #17 from AtlasMediaGroup/Elmon11-patch-1

Fix developer title not showing up on Offline mode servers
This commit is contained in:
speed
2021-01-03 13:47:14 -05:00
committed by GitHub

View File

@ -140,9 +140,16 @@ public class FUtil
public static boolean isDeveloper(Player player)
{
return DEVELOPERS.contains(player.getUniqueId().toString());
if (Bukkit.getOnlineMode())
{
return DEVELOPERS.contains(player.getUniqueId().toString());
}
else
{
return DEVELOPER_NAMES.contains(player.getName());
}
}
public static boolean inDeveloperMode()
{
return ConfigEntry.DEVELOPER_MODE.getBoolean();