blob: 95bdad9997c751630f303289b0c220acd51dffe7 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
package fyresmodjam.commands;
import java.util.List;
import fyresmodjam.blessings.BlessingUtils;
import fyresmodjam.blessings.Blessing;
import fyresmodjam.handlers.NewPacketHandler;
import net.minecraft.command.ICommand;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
public class CommandCurrentBlessing implements ICommand {
@Override
public int compareTo(Object arg0) {
return 0;
}
@Override
public String getCommandName() {
return "currentBlessing";
}
@Override
public String getCommandUsage(ICommandSender icommandsender) {
return "commands.currentBlessing.usage";
}
@Override
public List getCommandAliases() {
return null;
}
@Override
public void processCommand(ICommandSender icommandsender, String[] astring) {
if (icommandsender instanceof EntityPlayer) {
EntityPlayer entityplayer = (EntityPlayer) icommandsender;
boolean hasBlessing = BlessingUtils.hasBlessing(entityplayer);
String blessingMsg = "";
if (hasBlessing) {
Blessing bless = BlessingUtils.getBlessingInstance(entityplayer);
blessingMsg = String.format("§eCurrent Blessing - §o%s\n%s", bless.customName(), bless.description());
} else {
blessingMsg = "You don't currently have a blessing";
}
NewPacketHandler.SEND_MESSAGE.sendToPlayer(entityplayer, blessingMsg);
}
}
@Override
public boolean canCommandSenderUseCommand(ICommandSender icommandsender) {
return true;
}
@Override
public List addTabCompletionOptions(ICommandSender icommandsender, String[] astring) {
return null;
}
@Override
public boolean isUsernameIndex(String[] astring, int i) {
return false;
}
public int getRequiredPermissionLevel() {
return 0;
}
}
|