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
commit 7fb6a2f087
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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();