hub update!
This commit is contained in:
parent
47cb98066d
commit
eab7aa59f2
@ -23,6 +23,7 @@ import mineplex.core.gadget.event.GadgetActivateEvent;
|
||||
import mineplex.core.gadget.types.OutfitGadget;
|
||||
import mineplex.core.gadget.types.OutfitGadget.ArmorSlot;
|
||||
import mineplex.core.itemstack.ItemStackFactory;
|
||||
import mineplex.core.recharge.Recharge;
|
||||
|
||||
public class OutfitTeam extends OutfitGadget
|
||||
{
|
||||
@ -99,6 +100,9 @@ public class OutfitTeam extends OutfitGadget
|
||||
if (args.length < 2)
|
||||
return;
|
||||
|
||||
if (!Recharge.Instance.use(player, "Set Team Color", 20000, true, false))
|
||||
return;
|
||||
|
||||
//Color
|
||||
if (args[1].equals("red"))
|
||||
{
|
||||
|
@ -90,19 +90,19 @@ public class SoccerManager extends MiniPlugin
|
||||
Manager = manager;
|
||||
|
||||
_cornerFieldPlayerA = new Location(Manager.GetSpawn().getWorld(), 28.5,70,-27.5);
|
||||
_cornerFieldPlayerB = new Location(Manager.GetSpawn().getWorld(), 49.5,100,-63.5);
|
||||
_cornerFieldPlayerB = new Location(Manager.GetSpawn().getWorld(), 50.5,100,-65.5);
|
||||
|
||||
_cornerGoalPlayerA = new Location(Manager.GetSpawn().getWorld(), 35.5,70,-24.5);
|
||||
_cornerGoalPlayerB = new Location(Manager.GetSpawn().getWorld(), 42.5,100,-66.5);
|
||||
_cornerGoalPlayerB = new Location(Manager.GetSpawn().getWorld(), 43.5,100,-68.5);
|
||||
|
||||
_cornerFieldA = new Location(Manager.GetSpawn().getWorld(), 29.75,70,-28.75);
|
||||
_cornerFieldB = new Location(Manager.GetSpawn().getWorld(), 48.25,100,-62.25);
|
||||
_cornerFieldB = new Location(Manager.GetSpawn().getWorld(), 49.25,100,-64.25);
|
||||
|
||||
_cornerRedGoalA = new Location(Manager.GetSpawn().getWorld(), 36.75,70,-62.25);
|
||||
_cornerRedGoalB = new Location(Manager.GetSpawn().getWorld(), 41.25,73.5,-65.25);
|
||||
_cornerRedGoalA = new Location(Manager.GetSpawn().getWorld(), 36.75,70,-64.25);
|
||||
_cornerRedGoalB = new Location(Manager.GetSpawn().getWorld(), 42.25,73.5,-67.25);
|
||||
|
||||
_cornerBlueGoalA = new Location(Manager.GetSpawn().getWorld(), 36.75,70,-25.75);
|
||||
_cornerBlueGoalB = new Location(Manager.GetSpawn().getWorld(), 41.25,73.5,-28.75);
|
||||
_cornerBlueGoalB = new Location(Manager.GetSpawn().getWorld(), 42.25,73.5,-28.75);
|
||||
|
||||
//Store Gadgets
|
||||
for (Gadget gadget : gadgets.getGadgets(GadgetType.Costume))
|
||||
@ -337,10 +337,10 @@ public class SoccerManager extends MiniPlugin
|
||||
@EventHandler
|
||||
public void clean(UpdateEvent event)
|
||||
{
|
||||
if (event.getType() != UpdateType.FAST)
|
||||
if (event.getType() != UpdateType.FASTER)
|
||||
return;
|
||||
|
||||
for (Entity ent : _cornerFieldA.getWorld().getEntitiesByClass(LivingEntity.class))
|
||||
for (Entity ent : _cornerFieldA.getWorld().getEntities())
|
||||
{
|
||||
if (ent instanceof Player)
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user