removal of aero

This commit is contained in:
Super_
2020-06-30 21:51:06 -04:00
parent 9dad7c6d05
commit 9d71a7f4ae
104 changed files with 808 additions and 1010 deletions

View File

@ -16,18 +16,13 @@ public class CurseListener extends FreedomService
public HashMap<Player, Player> cursedPlayers = new HashMap<Player, Player>();
public CurseListener(TotalFreedomMod plugin)
{
super(plugin);
}
@Override
protected void onStart()
public void onStart()
{
}
@Override
protected void onStop()
public void onStop()
{
}

View File

@ -89,18 +89,13 @@ public class ItemFun extends FreedomService
return cooldownTracker.get(player.getName()).contains(item.getDataName());
}
public ItemFun(TotalFreedomMod plugin)
{
super(plugin);
}
@Override
protected void onStart()
public void onStart()
{
}
@Override
protected void onStop()
public void onStop()
{
}

View File

@ -27,11 +27,6 @@ public class Jumppads extends FreedomService
private double strength = 1 + 0.1F;
public HashMap<Player, JumpPadMode> players = new HashMap<>();
public Jumppads(TotalFreedomMod plugin)
{
super(plugin);
}
@Override
public void onStart()
{

View File

@ -23,19 +23,14 @@ public class Landminer extends FreedomService
@Getter
private final List<Landmine> landmines = new ArrayList<>();
public Landminer(TotalFreedomMod plugin)
{
super(plugin);
}
@Override
protected void onStart()
public void onStart()
{
landmines.clear();
}
@Override
protected void onStop()
public void onStop()
{
}

View File

@ -8,19 +8,13 @@ import org.bukkit.event.player.PlayerQuitEvent;
public class MP44 extends FreedomService
{
public MP44(TotalFreedomMod plugin)
{
super(plugin);
}
@Override
protected void onStart()
public void onStart()
{
}
@Override
protected void onStop()
public void onStop()
{
}

View File

@ -11,19 +11,13 @@ import org.bukkit.inventory.ItemStack;
public class MobStacker extends FreedomService
{
public MobStacker(TotalFreedomMod plugin)
{
super(plugin);
}
@Override
protected void onStart()
public void onStart()
{
}
@Override
protected void onStop()
public void onStop()
{
}

View File

@ -20,18 +20,13 @@ public class Trailer extends FreedomService
private final Random random = new Random();
private final Set<String> trailPlayers = new HashSet<>(); // player name
public Trailer(TotalFreedomMod plugin)
{
super(plugin);
}
@Override
protected void onStart()
public void onStart()
{
}
@Override
protected void onStop()
public void onStop()
{
}