Skip to content

Commit

Permalink
Depend on latest Forge version to allow JEI to crash properly
Browse files Browse the repository at this point in the history
  • Loading branch information
mezz committed Jan 16, 2018
1 parent ce6aac1 commit acd1c6d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,5 +1,5 @@
mcversion=1.12.2
forgeversion=14.23.1.2577
forgeversion=14.23.1.2590
mcp_mappings=snapshot_20170918
curse_project_id=238222

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/mezz/jei/JustEnoughItems.java
Expand Up @@ -18,7 +18,7 @@
version = Constants.VERSION,
guiFactory = "mezz.jei.config.JEIModGuiFactory",
acceptedMinecraftVersions = "[1.12.2,1.13)",
dependencies = "required-after:forge@[14.23.0.2500,);")
dependencies = "required-after:forge@[14.23.1.2590,);")
public class JustEnoughItems {

@SuppressWarnings("NullableProblems")
Expand Down
6 changes: 1 addition & 5 deletions src/main/java/mezz/jei/startup/ProxyCommonClient.java
Expand Up @@ -115,11 +115,7 @@ public void loadComplete(FMLLoadCompleteEvent event) {
}
});

try {
this.starter.start(plugins);
} catch (Exception e) {
Log.get().error("Exception on load", e);
}
this.starter.start(plugins);
}

@SubscribeEvent
Expand Down

0 comments on commit acd1c6d

Please sign in to comment.