mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-12 03:59:22 +00:00
Fix UUID mode detection
This commit is contained in:
parent
d5fe805d8f
commit
34eb2b0077
1 changed files with 1 additions and 1 deletions
|
@ -326,7 +326,7 @@ public class BukkitMain extends JavaPlugin implements Listener, IPlotMain {
|
|||
} else {
|
||||
AbstractTitle.TITLE_CLASS = new DefaultTitle();
|
||||
}
|
||||
if (Settings.OFFLINE_MODE) {
|
||||
if (Settings.OFFLINE_MODE || Bukkit.getOnlineMode() == false) {
|
||||
UUIDHandler.uuidWrapper = new OfflineUUIDWrapper();
|
||||
Settings.OFFLINE_MODE = true;
|
||||
} else if (checkVersion) {
|
||||
|
|
Loading…
Reference in a new issue