Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/1.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
mezz committed Dec 4, 2015
2 parents 3ee6acf + 0379169 commit ce3af0e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/mezz/jei/JustEnoughItems.java
Expand Up @@ -11,6 +11,7 @@
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;

import mezz.jei.api.JEIManager;
import mezz.jei.api.JEIPlugin;
import mezz.jei.config.Constants;
import mezz.jei.gui.GuiHelper;
import mezz.jei.network.PacketHandler;
Expand All @@ -34,8 +35,7 @@ public class JustEnoughItems {

@Mod.EventHandler
public void preInit(@Nonnull FMLPreInitializationEvent event) {
modPlugins = event.getAsmData().getAll("mezz.jei.api.JEIPlugin");

modPlugins = event.getAsmData().getAll(JEIPlugin.class.getCanonicalName());
packetHandler = new PacketHandler();
JEIManager.guiHelper = new GuiHelper();
JEIManager.itemBlacklist = new ItemBlacklist();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/mezz/jei/input/InputHandler.java
Expand Up @@ -100,7 +100,7 @@ private boolean handleMouseClick(int mouseButton, int mouseX, int mouseY) {
}
}

return false;
return recipesGui.isOpen();
}

@Nullable
Expand Down

0 comments on commit ce3af0e

Please sign in to comment.