mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2025-06-12 13:53:54 +00:00
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:
@ -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;
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user