diff --git a/gradle.properties b/gradle.properties index c610e8d3..db90bde0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,11 +2,11 @@ org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false # Fabric Properties - # check these on https://modmuss50.me/fabric.html - minecraft_version=1.18-pre8 - yarn_mappings=1.18-pre8+build.2 - loader_version=0.12.5 - fabric_version=0.43.0+1.18 + # check these on https://fabricmc.net/develop + minecraft_version=1.18.2 + yarn_mappings=1.18.2+build.1 + loader_version=0.13.3 + fabric_version=0.47.8+1.18.2 # Mod Properties group=com.minelittlepony @@ -20,7 +20,7 @@ org.gradle.daemon=false modrinth_project_id=JBjInUXM # Dependencies - modmenu_version=2.0.0-beta.7 + modmenu_version=3.1.0 kirin_version=1.10.0 - hd_skins_version=6.5.1 - mson_version=1.5.0 + hd_skins_version=6.5.2 + mson_version=1.5.1 diff --git a/src/main/java/com/minelittlepony/api/model/armour/ArmourRegistry.java b/src/main/java/com/minelittlepony/api/model/armour/ArmourRegistry.java index 23f614aa..6898b8e3 100644 --- a/src/main/java/com/minelittlepony/api/model/armour/ArmourRegistry.java +++ b/src/main/java/com/minelittlepony/api/model/armour/ArmourRegistry.java @@ -10,7 +10,7 @@ import com.mojang.serialization.Lifecycle; public final class ArmourRegistry { private ArmourRegistry() {} - static final Registry> REGISTRY = new SimpleRegistry<>(RegistryKey.ofRegistry(new Identifier("minelittlepony", "armour")), Lifecycle.stable()); + static final Registry> REGISTRY = new SimpleRegistry<>(RegistryKey.ofRegistry(new Identifier("minelittlepony", "armour")), Lifecycle.stable(), null); @SuppressWarnings("unchecked") public static IArmour getArmour(ItemStack stack, IArmour fallback) {