Add a few more EID rewrites

This commit is contained in:
md_5 2012-11-22 14:25:09 +11:00
parent dbca9acac3
commit 0d8716df93
2 changed files with 14 additions and 1 deletions

View File

@ -54,6 +54,10 @@ public class EntityMap
{ {
1 1
}; };
entityIds[0x1A] = new int[]
{
1
};
entityIds[0x1C] = new int[] entityIds[0x1C] = new int[]
{ {
1 1
@ -78,6 +82,10 @@ public class EntityMap
{ {
1 1
}; };
entityIds[0x23] = new int[]
{
1
};
entityIds[0x26] = new int[] entityIds[0x26] = new int[]
{ {
1 1
@ -98,6 +106,11 @@ public class EntityMap
{ {
1 1
}; };
entityIds[0x37] = new int[]
{
1
};
entityIds[0x47] = new int[] entityIds[0x47] = new int[]
{ {
1 1

View File

@ -17,7 +17,7 @@ public class CommandList extends Command
StringBuilder users = new StringBuilder(); StringBuilder users = new StringBuilder();
Collection<UserConnection> connections = BungeeCord.instance.connections.values(); Collection<UserConnection> connections = BungeeCord.instance.connections.values();
if (connections.size() == 0) if (connections.isEmpty())
{ {
sender.sendMessage(ChatColor.BLUE + "Currently no players online."); sender.sendMessage(ChatColor.BLUE + "Currently no players online.");
return; return;