-
Notifications
You must be signed in to change notification settings - Fork 0
/
CommandListHome.java
76 lines (57 loc) · 2.19 KB
/
CommandListHome.java
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 kdx7214.necessities;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import net.minecraft.command.CommandBase;
import net.minecraft.command.ICommand;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.server.MinecraftServer;
import net.minecraft.src.ModLoader;
public class CommandListHome extends CommandBaseNecessities {
public CommandListHome() {
}
public String getCommandName()
{
return "listhome";
}
public String getCommandUsage(ICommandSender par1ICommandSender)
{
return "/" + getCommandName() ;
}
public List getCommandAliases()
{
ArrayList<String> temp = new ArrayList() ;
temp.add("listhomes") ;
return temp ;
}
public void processCommand(ICommandSender sender, String[] par2ArrayOfStr)
{
assert(sender instanceof EntityPlayer || sender instanceof EntityPlayerMP) ;
MinecraftServer server = ModLoader.getMinecraftServerInstance() ;
EntityPlayer player = getCommandSenderAsPlayer(sender) ;
NBTTagCompound playerdata = NecessitiesMain.instance.necessities_data.getCompoundTag(player.username) ;
NecessitiesMain.instance.necessities_data.setCompoundTag(player.username, playerdata) ;
NBTTagCompound homes = playerdata.getCompoundTag("Homes") ;
playerdata.setCompoundTag("Homes", homes) ;
Collection c = homes.getTags() ;
if (c.isEmpty()) {
sender.sendChatToPlayer("No homes have been defined.") ;
return ;
} else {
String str = "Homes: " ;
for (Object o: c) {
NBTTagCompound t = (NBTTagCompound) o ;
str = str + t.getName() + " " ;
}
sender.sendChatToPlayer(str) ;
} // if (c.isEmpty())
} // public voice processCommand(...)
@Override
public boolean canCommandSenderUseCommand(ICommandSender sender) {
return hasPermission(sender, "necessities.listhome", false, false) ;
} // public boolean canCommandSenderUseCommand(...)
} // public class CommandListHome