Package net.minecraft.server.management

Examples of net.minecraft.server.management.BanList


            return null;
        }
        @Override
        public Set<String> getIPBans()
        {
            BanList bl = server.getConfigurationManager().getBannedIPs();
            Set<String> ips = new HashSet<String>();

            for (String s : bl.func_152685_a()) {
                ips.add(s);
            }
           
            return ips;
        }
View Full Code Here

TOP

Related Classes of net.minecraft.server.management.BanList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.