summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/commands/Commandbreak.java
blob: f8a9a2e085a0e0a3475a02117b21c2f573caeb52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package net.ess3.commands;

import static net.ess3.I18n._;
import net.ess3.api.IUser;
import net.ess3.permissions.Permissions;
import org.bukkit.Material;
import org.bukkit.block.Block;
import org.bukkit.event.block.BlockBreakEvent;


public class Commandbreak extends EssentialsCommand
{
	//TODO: Switch to use util class
	@Override
	public void run(final IUser user, final String commandLabel, final String[] args) throws Exception
	{
		final Block block = user.getPlayer().getTargetBlock(null, 20);
		if (block == null)
		{
			throw new NoChargeException();
		}
		if (block.getType() == Material.AIR)
		{
			throw new NoChargeException();
		}
		if (block.getType() == Material.BEDROCK && !Permissions.BREAK_BEDROCK.isAuthorized(user))
		{
			throw new Exception(_("§4You are not allowed to destroy bedrock."));
		}
		//final List<ItemStack> list = (List<ItemStack>)block.getDrops();		
		//final BlockBreakEvent event = new BlockBreakEvent(block, user.getBase(), list);
		final BlockBreakEvent event = new BlockBreakEvent(block, user.getPlayer());
		server.getPluginManager().callEvent(event);
		if (event.isCancelled())
		{
			throw new NoChargeException();
		}
		else
		{
			block.setType(Material.AIR);
		}
	}
}