Missing files
This commit is contained in:
parent
fea3793fca
commit
f5efea1e9a
@ -0,0 +1,14 @@
|
||||
package mineplex.core.pet.types;
|
||||
|
||||
import org.bukkit.entity.EntityType;
|
||||
|
||||
import mineplex.core.pet.Pet;
|
||||
|
||||
public class Pumpkin extends Pet
|
||||
{
|
||||
public Pumpkin()
|
||||
{
|
||||
super("Pumpling", EntityType.ZOMBIE, -1);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
package mineplex.hub.commands;
|
||||
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
import mineplex.core.command.CommandBase;
|
||||
import mineplex.core.common.Rank;
|
||||
import mineplex.hub.HubManager;
|
||||
|
||||
public class GadgetToggle extends CommandBase<HubManager>
|
||||
{
|
||||
public GadgetToggle(HubManager plugin)
|
||||
{
|
||||
super(plugin, Rank.ADMIN, new String[] {"gadget"});
|
||||
}
|
||||
|
||||
@Override
|
||||
public void Execute(Player caller, String[] args)
|
||||
{
|
||||
Plugin.ToggleGadget(caller);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user