mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
fixed online mode
This commit is contained in:
parent
0f1dc0f58a
commit
007ae51bde
@ -79,7 +79,7 @@ public class PlotMeConverter {
|
||||
new ArrayList<>();
|
||||
// Online Mode
|
||||
final boolean online =
|
||||
Bukkit.getServer().getOnlineMode() && Settings.OFFLINE_MODE;
|
||||
Bukkit.getServer().getOnlineMode() && !Settings.OFFLINE_MODE;
|
||||
// PlotMe Plugin
|
||||
final Plugin plotMePlugin =
|
||||
Bukkit.getPluginManager().getPlugin("PlotMe");
|
||||
|
@ -70,7 +70,7 @@ public class UUIDHandler {
|
||||
*
|
||||
* @see org.bukkit.Server#getOnlineMode()
|
||||
*/
|
||||
private final static boolean online = Bukkit.getServer().getOnlineMode() && Settings.OFFLINE_MODE;
|
||||
private final static boolean online = Bukkit.getServer().getOnlineMode() && !Settings.OFFLINE_MODE;
|
||||
|
||||
/**
|
||||
* Map containing names and UUIDs
|
||||
|
Loading…
Reference in New Issue
Block a user