American2050 Posted November 22, 2017 Posted November 22, 2017 I always seam to have problems when updating mods with the Configs Screen to show from the game itself. Always miss some detail and not on 1.12.2 not sure where my error could me. I have everything that I had on 1.11.x only thing changed are the methods on my GuiFactory and now the screen is provided this way @Override public GuiScreen createConfigGui(GuiScreen parentScreen) { // TODO Auto-generated method stub return new ModGuiConfig(parentScreen); } But it's not working. What could I be missing? I have: @Mod(modid = ModInfo.MODID, name = ModInfo.MOD_NAME, version = ModInfo.VERSION, guiFactory = ModInfo.GUI_FACTORY_CLASS, acceptedMinecraftVersions = ModInfo.ACCEPTED_VERSIONS) and: public static final String GUI_FACTORY_CLASS = "com.mramericanmike.barebones.client.gui.ModGuiFactory"; I'm lost this time, once again. Quote
American2050 Posted November 22, 2017 Author Posted November 22, 2017 Damn I feel stupid everytime... I was missing this. @Override public boolean hasConfigGui() { // TODO Auto-generated method stub return true; } I had it on false Quote
Recommended Posts
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.