Examples of func_152685_a()


Examples of net.minecraft.server.management.BanList.func_152685_a()

        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
Copyright © 2018 www.massapi.com. 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.