mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-08-06 20:43:11 +00:00
62 lines
1.3 KiB
Java
62 lines
1.3 KiB
Java
package com.earth2me.essentials.commands;
|
|
|
|
import com.earth2me.essentials.TargetBlock;
|
|
import org.bukkit.Location;
|
|
import org.bukkit.Server;
|
|
import org.bukkit.TreeType;
|
|
import com.earth2me.essentials.User;
|
|
import com.earth2me.essentials.Util;
|
|
import org.bukkit.Material;
|
|
import org.bukkit.block.Block;
|
|
|
|
|
|
public class Commandtree extends EssentialsCommand
|
|
{
|
|
public Commandtree()
|
|
{
|
|
super("tree");
|
|
}
|
|
|
|
@Override
|
|
public void run(Server server, User user, String commandLabel, String[] args) throws Exception
|
|
{
|
|
Object tree = new Object();
|
|
if (args.length < 1)
|
|
{
|
|
throw new NotEnoughArgumentsException();
|
|
}
|
|
else if (args[0].equalsIgnoreCase("birch"))
|
|
{
|
|
tree = TreeType.BIRCH;
|
|
}
|
|
else if (args[0].equalsIgnoreCase("redwood"))
|
|
{
|
|
tree = TreeType.REDWOOD;
|
|
}
|
|
else if (args[0].equalsIgnoreCase("tree"))
|
|
{
|
|
tree = TreeType.TREE;
|
|
}
|
|
else
|
|
{
|
|
throw new NotEnoughArgumentsException();
|
|
}
|
|
|
|
final int[] ignore =
|
|
{
|
|
8, 9
|
|
};
|
|
final Location loc = (new TargetBlock(user, 300, 0.2, ignore)).getTargetBlock().getLocation();
|
|
final Location safeLocation = Util.getSafeDestination(loc);
|
|
final boolean success = user.getWorld().generateTree(safeLocation, (TreeType)tree);
|
|
if (success)
|
|
{
|
|
charge(user);
|
|
user.sendMessage(Util.i18n("treeSpawned"));
|
|
}
|
|
else
|
|
{
|
|
user.sendMessage(Util.i18n("treeFailure"));
|
|
}
|
|
}
|
|
}
|