Many changes for TFM 5.0

Refractoring
Reworked /saconfig
Reworked part of the command system
Removed unused config sections
Refractored part of the config
Fixed bugs with admin list
Actually allow CONSOLE to have senior perms
This commit is contained in:
JeromSar
2016-03-02 20:28:01 +01:00
parent 19ced05110
commit 055973aa37
143 changed files with 939 additions and 954 deletions

View File

@ -50,7 +50,7 @@ public class FPlayer
private boolean mobThrowerEnabled = false;
private EntityType mobThrowerEntity = EntityType.PIG;
private double mobThrowerSpeed = 4.0;
private final List<LivingEntity> mobThrowerQueue = new ArrayList<LivingEntity>();
private final List<LivingEntity> mobThrowerQueue = new ArrayList<>();
private BukkitTask mp44ScheduleTask = null;
private boolean mp44Armed = false;
private boolean mp44Firing = false;

View File

@ -43,13 +43,11 @@ public class PlayerList extends FreedomService
playerMap.clear();
dataMap.clear();
// Preload online playerMap
// Preload online players
for (Player player : server.getOnlinePlayers())
{
getPlayer(player);
}
FLog.info("Loaded playerdata for " + playerMap.size() + " players");
}
@Override