From e8e2ed9fe521b4b420c5eb93190fa3f1f6f58686 Mon Sep 17 00:00:00 2001 From: SquidDev Date: Sun, 9 Aug 2020 21:50:58 +0100 Subject: [PATCH] Fix incorrect lower bound in mods.toml It appears I had failed to update this when last bumping the Forge version. Closes #521 - we're relying on a feature only added in Forge 31.1.16, and they're using 3.1.14. --- src/main/resources/META-INF/mods.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 94b6f2073..451828625 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -19,6 +19,6 @@ CC: Tweaked is a fork of ComputerCraft, adding programmable computers, turtles a [[dependencies.computercraft]] modId="forge" mandatory=true - versionRange="[31.0.13,32)" + versionRange="[31.1.41,32)" ordering="NONE" side="BOTH"