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:
@ -150,7 +150,7 @@ public class ItemFun extends FreedomService
|
||||
distance = location.distance(targetBlock.getLocation());
|
||||
}
|
||||
|
||||
final List<Block> affected = new ArrayList<Block>();
|
||||
final List<Block> affected = new ArrayList<>();
|
||||
|
||||
Block lastBlock = null;
|
||||
for (double offset = 0.0; offset <= distance; offset += (distance / 25.0))
|
||||
|
@ -21,7 +21,7 @@ public class Landminer extends FreedomService
|
||||
{
|
||||
|
||||
@Getter
|
||||
private final List<Landmine> landmines = new ArrayList<Landmine>();
|
||||
private final List<Landmine> landmines = new ArrayList<>();
|
||||
|
||||
public Landminer(TotalFreedomMod plugin)
|
||||
{
|
||||
|
Reference in New Issue
Block a user