mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-27 01:05:38 +00:00
This is why Lombok exists
This commit is contained in:
parent
65bd609952
commit
c0b43f26ea
@ -171,11 +171,6 @@ public class Admin implements ConfigLoadable, ConfigSavable, Validatable
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getLoginMessage()
|
|
||||||
{
|
|
||||||
return this.loginMessage;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void removeIp(String ip)
|
public void removeIp(String ip)
|
||||||
{
|
{
|
||||||
if (ips.contains(ip))
|
if (ips.contains(ip))
|
||||||
@ -218,64 +213,4 @@ public class Admin implements ConfigLoadable, ConfigSavable, Validatable
|
|||||||
&& !ips.isEmpty()
|
&& !ips.isEmpty()
|
||||||
&& lastLogin != null;
|
&& lastLogin != null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isActive()
|
|
||||||
{
|
|
||||||
return this.active;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getConfigKey()
|
|
||||||
{
|
|
||||||
return this.configKey;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getName()
|
|
||||||
{
|
|
||||||
return this.name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setName(final String name)
|
|
||||||
{
|
|
||||||
this.name = name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Rank getRank()
|
|
||||||
{
|
|
||||||
return this.rank;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRank(final Rank rank)
|
|
||||||
{
|
|
||||||
this.rank = rank;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<String> getIps()
|
|
||||||
{
|
|
||||||
return this.ips;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getLastLogin()
|
|
||||||
{
|
|
||||||
return this.lastLogin;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLastLogin(final Date lastLogin)
|
|
||||||
{
|
|
||||||
this.lastLogin = lastLogin;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLoginMessage(final String loginMessage)
|
|
||||||
{
|
|
||||||
this.loginMessage = loginMessage;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getDiscordID()
|
|
||||||
{
|
|
||||||
return this.discordID;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDiscordID(String discordID)
|
|
||||||
{
|
|
||||||
this.discordID = discordID;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -218,26 +218,6 @@ public class CageData
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isCaged()
|
|
||||||
{
|
|
||||||
return this.caged;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Location getLocation()
|
|
||||||
{
|
|
||||||
return this.location;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Material getOuterMaterial()
|
|
||||||
{
|
|
||||||
return this.outerMaterial;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Material getInnerMaterial()
|
|
||||||
{
|
|
||||||
return this.innerMaterial;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static class BlockData
|
private static class BlockData
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -32,11 +32,6 @@ public class Freezer extends FreedomService
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isGlobalFreeze()
|
|
||||||
{
|
|
||||||
return this.globalFreeze;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGlobalFreeze(boolean frozen)
|
public void setGlobalFreeze(boolean frozen)
|
||||||
{
|
{
|
||||||
this.globalFreeze = frozen;
|
this.globalFreeze = frozen;
|
||||||
|
@ -131,41 +131,6 @@ public class FPlayer
|
|||||||
return orbitStrength;
|
return orbitStrength;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isInvSee()
|
|
||||||
{
|
|
||||||
return invSee;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setInvSee(boolean toggle)
|
|
||||||
{
|
|
||||||
this.invSee = toggle;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isEditBlocked()
|
|
||||||
{
|
|
||||||
return editBlocked;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEditBlocked(boolean toggle)
|
|
||||||
{
|
|
||||||
this.editBlocked = toggle;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isPvpBlocked()
|
|
||||||
{
|
|
||||||
return pvpBlocked;
|
|
||||||
}
|
|
||||||
|
|
||||||
public CageData getCageData()
|
|
||||||
{
|
|
||||||
return cageData;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPvpBlocked(boolean toggle)
|
|
||||||
{
|
|
||||||
this.pvpBlocked = toggle;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isFuckOff()
|
public boolean isFuckOff()
|
||||||
{
|
{
|
||||||
return fuckoffRadius > 0;
|
return fuckoffRadius > 0;
|
||||||
@ -378,11 +343,6 @@ public class FPlayer
|
|||||||
this.inAdminchat = inAdminchat;
|
this.inAdminchat = inAdminchat;
|
||||||
}
|
}
|
||||||
|
|
||||||
public FreezeData getFreezeData()
|
|
||||||
{
|
|
||||||
return freezeData;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public boolean inAdminChat()
|
public boolean inAdminChat()
|
||||||
{
|
{
|
||||||
|
@ -82,11 +82,6 @@ public class VPlayer implements ConfigLoadable, ConfigSavable, Validatable
|
|||||||
return ips.remove(ip);
|
return ips.remove(ip);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDiscordId(final String discordId)
|
|
||||||
{
|
|
||||||
this.discordId = discordId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isValid()
|
public boolean isValid()
|
||||||
{
|
{
|
||||||
|
@ -27,7 +27,6 @@ public final class AdminWorld extends CustomWorld
|
|||||||
private static final long CACHE_CLEAR_FREQUENCY = 30L * 1000L; //30 seconds, milliseconds
|
private static final long CACHE_CLEAR_FREQUENCY = 30L * 1000L; //30 seconds, milliseconds
|
||||||
private static final long TP_COOLDOWN_TIME = 500L; //0.5 seconds, milliseconds
|
private static final long TP_COOLDOWN_TIME = 500L; //0.5 seconds, milliseconds
|
||||||
private static final String GENERATION_PARAMETERS = ConfigEntry.FLATLANDS_GENERATE_PARAMS.getString();
|
private static final String GENERATION_PARAMETERS = ConfigEntry.FLATLANDS_GENERATE_PARAMS.getString();
|
||||||
private static final String WORLD_NAME = "adminworld";
|
|
||||||
//
|
//
|
||||||
private final Map<Player, Long> teleportCooldown = new HashMap<>();
|
private final Map<Player, Long> teleportCooldown = new HashMap<>();
|
||||||
private final Map<CommandSender, Boolean> accessCache = new HashMap<>();
|
private final Map<CommandSender, Boolean> accessCache = new HashMap<>();
|
||||||
@ -56,7 +55,7 @@ public final class AdminWorld extends CustomWorld
|
|||||||
@Override
|
@Override
|
||||||
protected World generateWorld()
|
protected World generateWorld()
|
||||||
{
|
{
|
||||||
final WorldCreator worldCreator = new WorldCreator(WORLD_NAME);
|
final WorldCreator worldCreator = new WorldCreator(getName());
|
||||||
worldCreator.generateStructures(false);
|
worldCreator.generateStructures(false);
|
||||||
worldCreator.type(WorldType.NORMAL);
|
worldCreator.type(WorldType.NORMAL);
|
||||||
worldCreator.environment(World.Environment.NORMAL);
|
worldCreator.environment(World.Environment.NORMAL);
|
||||||
|
@ -23,7 +23,6 @@ public class Flatlands extends CustomWorld
|
|||||||
{
|
{
|
||||||
super("flatlands");
|
super("flatlands");
|
||||||
}
|
}
|
||||||
private static final String WORLD_NAME = "flatlands";
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected World generateWorld()
|
protected World generateWorld()
|
||||||
@ -90,8 +89,4 @@ public class Flatlands extends CustomWorld
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getName()
|
|
||||||
{
|
|
||||||
return this.WORLD_NAME;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -28,7 +28,6 @@ public final class MasterBuilderWorld extends CustomWorld
|
|||||||
//
|
//
|
||||||
private WorldWeather weather = WorldWeather.OFF;
|
private WorldWeather weather = WorldWeather.OFF;
|
||||||
private WorldTime time = WorldTime.INHERIT;
|
private WorldTime time = WorldTime.INHERIT;
|
||||||
private static final String WORLD_NAME = "masterbuilderworld";
|
|
||||||
|
|
||||||
public MasterBuilderWorld()
|
public MasterBuilderWorld()
|
||||||
{
|
{
|
||||||
@ -44,7 +43,7 @@ public final class MasterBuilderWorld extends CustomWorld
|
|||||||
@Override
|
@Override
|
||||||
protected World generateWorld()
|
protected World generateWorld()
|
||||||
{
|
{
|
||||||
final WorldCreator worldCreator = new WorldCreator(WORLD_NAME);
|
final WorldCreator worldCreator = new WorldCreator(getName());
|
||||||
worldCreator.generateStructures(false);
|
worldCreator.generateStructures(false);
|
||||||
worldCreator.type(WorldType.NORMAL);
|
worldCreator.type(WorldType.NORMAL);
|
||||||
worldCreator.environment(World.Environment.NORMAL);
|
worldCreator.environment(World.Environment.NORMAL);
|
||||||
|
Loading…
Reference in New Issue
Block a user