blob: 4eda66b400e1d4e1be33e7274d33114670a7a750 (
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
|
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;
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("Reloaded config."));
}
}
|