mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2025-06-12 13:53:54 +00:00
Added checkstyle plugin
Moved resources to correct folder Fixed and improved build information, no longer tracking build.properties
This commit is contained in:
@ -21,6 +21,7 @@ import org.bukkit.scheduler.BukkitTask;
|
||||
|
||||
public class FPlayer
|
||||
{
|
||||
|
||||
public static final long AUTO_PURGE_TICKS = 5L * 60L * 20L;
|
||||
|
||||
@Getter
|
||||
@ -293,7 +294,7 @@ public class FPlayer
|
||||
return this.lockupScheduleTask;
|
||||
}
|
||||
|
||||
public void setLockupScheduleID(BukkitTask id)
|
||||
public void setLockupScheduleId(BukkitTask id)
|
||||
{
|
||||
this.lockupScheduleTask = id;
|
||||
}
|
||||
@ -397,6 +398,7 @@ public class FPlayer
|
||||
|
||||
private class ArrowShooter extends BukkitRunnable
|
||||
{
|
||||
|
||||
private final Player player;
|
||||
|
||||
private ArrowShooter(Player player)
|
||||
|
@ -13,6 +13,7 @@ import org.bukkit.entity.Player;
|
||||
|
||||
public class PlayerData implements ConfigLoadable, ConfigSavable, Validatable
|
||||
{
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
private String username;
|
||||
|
@ -20,6 +20,7 @@ import org.bukkit.event.player.PlayerQuitEvent;
|
||||
|
||||
public class PlayerList extends AbstractService<TotalFreedomMod>
|
||||
{
|
||||
|
||||
public static final long AUTO_PURGE_TICKS = 20L * 60L * 5L;
|
||||
//
|
||||
@Getter
|
||||
|
Reference in New Issue
Block a user