summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/Commandpowertooltoggle.java
blob: af51f26280b38cc39c249961e8728e3d1ead4ae8 (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
package com.earth2me.essentials.commands;

import com.earth2me.essentials.User;
import com.earth2me.essentials.Util;
import org.bukkit.Server;


public class Commandpowertooltoggle extends EssentialsCommand
{
	public Commandpowertooltoggle()
	{
		super("powertooltoggle");
	}

	@Override
	protected void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
	{
		if(!user.hasPowerTools())
		{
			user.sendMessage(Util.i18n("noPowerTools"));
			return;
		}		
		user.sendMessage(user.togglePowerToolsEnabled()
						 ? Util.i18n("powerToolsEnabled")
						 : Util.i18n("powerToolsDisabled"));		
	}
		
		
}