Require Forge Version 14.21.0.2343 which fixes the crash regarding recipes. Closes #98

This commit is contained in:
alexbegt 2017-06-21 13:43:58 -04:00
parent 8c0e03cd0a
commit 1efea0cc6b
2 changed files with 3 additions and 3 deletions

View File

@ -46,8 +46,8 @@ targetCompatibility = 1.8
// Setup the forge minecraft plugin data. Specify the preferred forge/minecraft version here // Setup the forge minecraft plugin data. Specify the preferred forge/minecraft version here
minecraft { minecraft {
version = "1.12-14.21.0.2333" version = "1.12-14.21.0.2343"
mappings = "snapshot_20170616" mappings = "snapshot_20170621"
runDir = "run" runDir = "run"
} }

View File

@ -30,7 +30,7 @@ import net.minecraftforge.fml.common.network.NetworkRegistry;
import net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper; import net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper;
import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.Side;
@Mod(modid = IronChest.MOD_ID, name = "Iron Chests", dependencies = "required-after:forge@[14.21.0.2333,)", acceptedMinecraftVersions = "[1.12, 1.13)") @Mod(modid = IronChest.MOD_ID, name = "Iron Chests", dependencies = "required-after:forge@[14.21.0.2343,)", acceptedMinecraftVersions = "[1.12, 1.13)")
public class IronChest public class IronChest
{ {
public static final String MOD_ID = "ironchest"; public static final String MOD_ID = "ironchest";