mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-21 20:18:01 +01:00
1.18.0-pre -> 1.18.2 (breaking changes)
This commit is contained in:
parent
642ec199b5
commit
14c34a4f22
2 changed files with 9 additions and 9 deletions
|
@ -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
|
||||
|
|
|
@ -10,7 +10,7 @@ import com.mojang.serialization.Lifecycle;
|
|||
|
||||
public final class ArmourRegistry {
|
||||
private ArmourRegistry() {}
|
||||
static final Registry<IArmour<?>> REGISTRY = new SimpleRegistry<>(RegistryKey.ofRegistry(new Identifier("minelittlepony", "armour")), Lifecycle.stable());
|
||||
static final Registry<IArmour<?>> REGISTRY = new SimpleRegistry<>(RegistryKey.ofRegistry(new Identifier("minelittlepony", "armour")), Lifecycle.stable(), null);
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T extends IArmourModel> IArmour<T> getArmour(ItemStack stack, IArmour<T> fallback) {
|
||||
|
|
Loading…
Reference in a new issue