Package com.onarandombox.MultiversePortals.enums

Examples of com.onarandombox.MultiversePortals.enums.PortalConfigProperty


                    sender.sendMessage(ChatColor.RED + "Sorry, " + ChatColor.AQUA + args.get(0) + ChatColor.WHITE + " must be an integer!");
                    return;
                }
            }
        } else {
            PortalConfigProperty property = null;
            try {
                property = PortalConfigProperty.valueOf(args.get(0).toLowerCase());
            } catch (IllegalArgumentException e) {
                sender.sendMessage(ChatColor.RED + "Sorry, " + ChatColor.AQUA + args.get(0) + ChatColor.WHITE + " you can't set " + ChatColor.AQUA + args.get(0));
                sender.sendMessage(ChatColor.GREEN + "Valid values are:");
View Full Code Here

TOP

Related Classes of com.onarandombox.MultiversePortals.enums.PortalConfigProperty

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.