Skip to content

Commit

Permalink
Update Forge
Browse files Browse the repository at this point in the history
  • Loading branch information
mezz committed Jun 26, 2016
1 parent 7a8ae41 commit 56029e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,5 +1,5 @@
mcversion=1.10
forgeversion=12.18.0.1981-1.10.0
forgeversion=12.18.0.1999-1.10.0
mcp_mappings=snapshot_20160518
curse_project_id=238222

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/mezz/jei/JustEnoughItems.java
Expand Up @@ -22,8 +22,8 @@
name = Constants.NAME,
version = Constants.VERSION,
guiFactory = "mezz.jei.config.JEIModGuiFactory",
acceptedMinecraftVersions = "[1.9,1.10]",
dependencies = "required-after:Forge@[12.17.0.1946,);")
acceptedMinecraftVersions = "[1.10]",
dependencies = "required-after:Forge@[12.18.0.1999,);")
public class JustEnoughItems {

@SidedProxy(clientSide = "mezz.jei.ProxyCommonClient", serverSide = "mezz.jei.ProxyCommon")
Expand Down
5 changes: 0 additions & 5 deletions src/main/java/mezz/jei/gui/MasterFocus.java
Expand Up @@ -71,11 +71,6 @@ private static FluidStack getFluidFromItemStack(@Nonnull ItemStack stack) {
}
}

// workaround for broken FluidContainerRegistry entry for potions
if (item instanceof ItemPotion) {
return null;
}

FluidStack fluidContained = FluidUtil.getFluidContained(stack);
if (fluidContained != null) {
return fluidContained;
Expand Down

0 comments on commit 56029e6

Please sign in to comment.