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:
@ -15,6 +15,7 @@ import org.bukkit.util.Vector;
|
||||
|
||||
public class Jumppads extends AbstractService<TotalFreedomMod>
|
||||
{
|
||||
|
||||
public static final Material BLOCK_ID = Material.WOOL;
|
||||
public static final double DAMPING_COEFFICIENT = 0.8;
|
||||
//
|
||||
@ -117,6 +118,7 @@ public class Jumppads extends AbstractService<TotalFreedomMod>
|
||||
|
||||
public static enum JumpPadMode
|
||||
{
|
||||
|
||||
OFF(false), NORMAL(true), NORMAL_AND_SIDEWAYS(true), MADGEEK(true);
|
||||
private final boolean on;
|
||||
|
||||
|
@ -19,6 +19,7 @@ import org.bukkit.util.Vector;
|
||||
|
||||
public class Landminer extends AbstractService<TotalFreedomMod>
|
||||
{
|
||||
|
||||
@Getter
|
||||
private final List<Landmine> landmines = new ArrayList<Landmine>();
|
||||
|
||||
@ -102,6 +103,7 @@ public class Landminer extends AbstractService<TotalFreedomMod>
|
||||
|
||||
public static class Landmine
|
||||
{
|
||||
|
||||
@Getter
|
||||
private final Location location;
|
||||
@Getter
|
||||
|
Reference in New Issue
Block a user