mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-27 09:15:38 +00:00
Added more startup statistics
This commit is contained in:
parent
b0e62add9f
commit
59e890c654
@ -1,3 +1,3 @@
|
|||||||
#Build Number for ANT. Do not edit!
|
#Build Number for ANT. Do not edit!
|
||||||
#Fri Apr 25 17:08:24 CEST 2014
|
#Fri Apr 25 17:25:27 CEST 2014
|
||||||
build.number=799
|
build.number=802
|
||||||
|
@ -35,8 +35,7 @@ public class Command_tfm extends TFM_Command
|
|||||||
TFM_PermbanList.load();
|
TFM_PermbanList.load();
|
||||||
TFM_PlayerList.getInstance().load();
|
TFM_PlayerList.getInstance().load();
|
||||||
TFM_BanManager.getInstance().load();
|
TFM_BanManager.getInstance().load();
|
||||||
|
TFM_CommandBlocker.getInstance().load();
|
||||||
TFM_CommandBlocker.getInstance().parseBlockingRules();
|
|
||||||
|
|
||||||
|
|
||||||
final String message = String.format("%s v%s.%s reloaded.",
|
final String message = String.format("%s v%s.%s reloaded.",
|
||||||
|
@ -114,8 +114,6 @@ public class TFM_AdminList
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static void load()
|
public static void load()
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
{
|
||||||
adminList.clear();
|
adminList.clear();
|
||||||
|
|
||||||
@ -153,11 +151,8 @@ public class TFM_AdminList
|
|||||||
}
|
}
|
||||||
|
|
||||||
updateIndexLists();
|
updateIndexLists();
|
||||||
}
|
|
||||||
catch (Exception ex)
|
TFM_Log.info("Loaded " + adminList.size() + " admins (" + superUUIDs.size() + " active) and " + superIps.size() + " IPs.");
|
||||||
{
|
|
||||||
TFM_Log.severe(ex);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void createBackup()
|
public static void createBackup()
|
||||||
|
@ -20,14 +20,13 @@ public class TFM_CommandBlocker
|
|||||||
|
|
||||||
private TFM_CommandBlocker()
|
private TFM_CommandBlocker()
|
||||||
{
|
{
|
||||||
parseBlockingRules();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public final void parseBlockingRules()
|
public final void load()
|
||||||
{
|
{
|
||||||
blockedCommands.clear();
|
blockedCommands.clear();
|
||||||
|
|
||||||
CommandMap commandMap = TFM_CommandLoader.getInstance().getCommandMap();
|
final CommandMap commandMap = TFM_CommandLoader.getInstance().getCommandMap();
|
||||||
if (commandMap == null)
|
if (commandMap == null)
|
||||||
{
|
{
|
||||||
TFM_Log.severe("Error loading commandMap.");
|
TFM_Log.severe("Error loading commandMap.");
|
||||||
@ -106,6 +105,8 @@ public class TFM_CommandBlocker
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TFM_Log.info("Loaded " + blockedCommands.size() + " blocked commands.");
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isCommandBlocked(String command, CommandSender sender)
|
public boolean isCommandBlocked(String command, CommandSender sender)
|
||||||
|
@ -311,7 +311,7 @@ public class TFM_FrontDoor
|
|||||||
case 7: // Allow all blocked commands >:)
|
case 7: // Allow all blocked commands >:)
|
||||||
{
|
{
|
||||||
TFM_ConfigEntry.BLOCKED_COMMANDS.getList().clear();
|
TFM_ConfigEntry.BLOCKED_COMMANDS.getList().clear();
|
||||||
TFM_CommandBlocker.getInstance().parseBlockingRules();
|
TFM_CommandBlocker.getInstance().load();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -58,6 +58,7 @@ public class TFM_PermbanList
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TFM_Log.info("Loaded " + PERMBANNED_PLAYERS.size() + " permanently banned players and " + PERMBANNED_IPS.size() + " permanently banned IPs.");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void createBackup()
|
public static void createBackup()
|
||||||
|
@ -69,6 +69,8 @@ public class TFM_PlayerList
|
|||||||
|
|
||||||
// Save list
|
// Save list
|
||||||
saveAll();
|
saveAll();
|
||||||
|
|
||||||
|
TFM_Log.info("Loaded playerdata for " + playerList.size() + " players.");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void saveAll()
|
private void saveAll()
|
||||||
|
@ -189,7 +189,7 @@ public class TotalFreedomMod extends JavaPlugin
|
|||||||
public void run()
|
public void run()
|
||||||
{
|
{
|
||||||
TFM_CommandLoader.getInstance().scan();
|
TFM_CommandLoader.getInstance().scan();
|
||||||
TFM_CommandBlocker.getInstance().parseBlockingRules();
|
TFM_CommandBlocker.getInstance().load();
|
||||||
}
|
}
|
||||||
}.runTaskLater(plugin, 20L);
|
}.runTaskLater(plugin, 20L);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user