aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/Danker/commands/ReloadConfigCommand.java
blob: 75ee215d447789b0036e032ab9dba19e1a14655e (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
package me.Danker.commands;

import me.Danker.handlers.ConfigHandler;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.EnumChatFormatting;

public class ReloadConfigCommand extends CommandBase {

	@Override
	public String getCommandName() {
		return "reloadconfig";
	}

	@Override
	public String getCommandUsage(ICommandSender arg0) {
		return "/" + getCommandName();
	}
	
	@Override
	public int getRequiredPermissionLevel() {
		return 0;
	}
	
	@Override
	public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
		final EntityPlayer player = (EntityPlayer)arg0;
		final ConfigHandler cf = new ConfigHandler();
		cf.reloadConfig();
		player.addChatMessage(new ChatComponentText(EnumChatFormatting.GREEN + "Reloaded config."));
	}

}