From 57f59e7da8ae83f1ad952e410601409eecf2e1c4 Mon Sep 17 00:00:00 2001 From: shedaniel Date: Thu, 11 Nov 2021 01:01:30 +0800 Subject: Add Dispose Here region, introduce ValueAnimator --- .../java/me/shedaniel/rei/fabric/RoughlyEnoughItemsInitializerImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fabric/src') diff --git a/fabric/src/main/java/me/shedaniel/rei/fabric/RoughlyEnoughItemsInitializerImpl.java b/fabric/src/main/java/me/shedaniel/rei/fabric/RoughlyEnoughItemsInitializerImpl.java index 6c02624ac..3945ac6fb 100644 --- a/fabric/src/main/java/me/shedaniel/rei/fabric/RoughlyEnoughItemsInitializerImpl.java +++ b/fabric/src/main/java/me/shedaniel/rei/fabric/RoughlyEnoughItemsInitializerImpl.java @@ -75,7 +75,7 @@ public class RoughlyEnoughItemsInitializerImpl { try { if (!FabricLoader.getInstance().isModLoaded("cloth-config2")) { RoughlyEnoughItemsState.error("Cloth Config is not installed!", "https://www.curseforge.com/minecraft/mc-mods/cloth-config/files/all"); - } else if (SemanticVersion.parse(FabricLoader.getInstance().getModContainer("cloth-config2").get().getMetadata().getVersion().getFriendlyString()).compareTo(SemanticVersion.parse("4.10.9")) < 0) { + } else if (SemanticVersion.parse(FabricLoader.getInstance().getModContainer("cloth-config2").get().getMetadata().getVersion().getFriendlyString()).compareTo(SemanticVersion.parse("5.1")) < 0) { RoughlyEnoughItemsState.error("Your Cloth Config version is too old!", "https://www.curseforge.com/minecraft/mc-mods/cloth-config/files/all"); } } catch (VersionParsingException e) { -- cgit