mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-26 17:05:01 +00:00
Tinkered with config.
This commit is contained in:
parent
770db8d594
commit
e7731e2ad5
@ -25,7 +25,7 @@ public class TotalFreedomMod extends JavaPlugin
|
||||
if (CONFIG.getString("superadmins", null) == null)
|
||||
{
|
||||
log.log(Level.INFO, "[Total Freedom Mod] - Generating default config file (plugins/TotalFreedomMod/config.yml)...");
|
||||
CONFIG.setProperty("superadmins", new String[] {"madgeek1450", "markbyron"});
|
||||
CONFIG.setProperty("superadmins", new String[] {"Madgeek1450", "markbyron"});
|
||||
CONFIG.save();
|
||||
CONFIG.load();
|
||||
}
|
||||
@ -33,11 +33,6 @@ public class TotalFreedomMod extends JavaPlugin
|
||||
|
||||
log.log(Level.INFO, "[Total Freedom Mod] - Enabled! - Version: " + this.getDescription().getVersion() + " by Madgeek1450");
|
||||
log.log(Level.INFO, "[Total Freedom Mod] - Loaded superadmins: " + superadmins.toString());
|
||||
|
||||
if (!Bukkit.getOnlineMode())
|
||||
{
|
||||
log.log(Level.WARNING, "[Total Freedom Mod]: 'online-mode' is set to FALSE in server.properties. This must be set to TRUE in order for in-game superadmin commands to work.");
|
||||
}
|
||||
}
|
||||
|
||||
public void onDisable()
|
||||
@ -220,7 +215,6 @@ public class TotalFreedomMod extends JavaPlugin
|
||||
|
||||
private boolean isUserSuperadmin(String userName)
|
||||
{
|
||||
if (!Bukkit.getOnlineMode()) return false;
|
||||
return superadmins.contains(userName);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user