Changes '/whitelist list' to ignore comments. Addresses BUKKIT-1804

This commit is contained in:
Jeff Wardian 2012-06-14 22:31:47 -05:00 committed by Wesley Wolfe
parent ae94a3308d
commit ae98a6f051

View file

@ -1029,6 +1029,9 @@ public final class CraftServer implements Server {
Set<OfflinePlayer> result = new LinkedHashSet<OfflinePlayer>();
for (Object name : server.getWhitelisted()) {
if (((String)name).length() == 0 || ((String)name).startsWith("#")) {
continue;
}
result.add(getOfflinePlayer((String) name));
}