Posted April 2, 20196 yr I have created a config with the @Config annotation but the categories always remain unsorted. Is there a way to sort them? Issue:
April 3, 20196 yr You can create a list to return in a GuiConfig class. public class ModGuiConfig extends GuiConfig{ public static List<IConfigElement> getConfigElements(){ List<IConfigElement> list = new ArrayList<>(); list.add(new ConfigElement(ConfigurationHandler.configuration.getCategory(ConfigurationHandler.CATEGORY_ENTITY))); list.add(new ConfigElement(ConfigurationHandler.configuration.getCategory(ConfigurationHandler.CATEGORY_TILES))); list.add(new ConfigElement(ConfigurationHandler.configuration.getCategory(ConfigurationHandler.CATEGORY_WORLD))); list.add(new ConfigElement(ConfigurationHandler.configuration.getCategory(ConfigurationHandler.CATEGORY_CHEATS))); return list; } public class ConfigurationHandler{ public static Configuration configuration; public static String CATEGORY_TILES = "tiles"; public static String CATEGORY_ENTITY = "entity"; public static String CATEGORY_WORLD = "world"; public static String CATEGORY_CHEATS = "other"; }
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.