Posted July 8, 20178 yr I am trying to see if JEI is installed and one of my other mods is installed this is what I have right now. I am loading it in postinit. It isnt saying true even tho I have one of the mods loaded. package ronaldi2001.MoreMetals.Main; import java.util.logging.Level; import net.minecraftforge.fml.common.Loader; public class ModsLoaded { public static boolean justenoughitemsInstalled; public static boolean moreitemsInstalled; public static void modloaded() { justenoughitemsInstalled = Loader.isModLoaded("Just Enough Items"); moreitemsInstalled = Loader.isModLoaded("More Items"); } } Edited July 8, 20178 yr by Ronaldi2001 Forgot something ~ Ronaldi2001
July 8, 20178 yr You've marked the thread as solved, but you haven't posted the solution. In future, please do this so other people can find it in future. Loader.isModLoaded requires the mod ID, not the mod name (despite the parameter's name). Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.
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.