mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-22 04:27:59 +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
|
org.gradle.daemon=false
|
||||||
|
|
||||||
# Fabric Properties
|
# Fabric Properties
|
||||||
# check these on https://modmuss50.me/fabric.html
|
# check these on https://fabricmc.net/develop
|
||||||
minecraft_version=1.18-pre8
|
minecraft_version=1.18.2
|
||||||
yarn_mappings=1.18-pre8+build.2
|
yarn_mappings=1.18.2+build.1
|
||||||
loader_version=0.12.5
|
loader_version=0.13.3
|
||||||
fabric_version=0.43.0+1.18
|
fabric_version=0.47.8+1.18.2
|
||||||
|
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
group=com.minelittlepony
|
group=com.minelittlepony
|
||||||
|
@ -20,7 +20,7 @@ org.gradle.daemon=false
|
||||||
modrinth_project_id=JBjInUXM
|
modrinth_project_id=JBjInUXM
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
modmenu_version=2.0.0-beta.7
|
modmenu_version=3.1.0
|
||||||
kirin_version=1.10.0
|
kirin_version=1.10.0
|
||||||
hd_skins_version=6.5.1
|
hd_skins_version=6.5.2
|
||||||
mson_version=1.5.0
|
mson_version=1.5.1
|
||||||
|
|
|
@ -10,7 +10,7 @@ import com.mojang.serialization.Lifecycle;
|
||||||
|
|
||||||
public final class ArmourRegistry {
|
public final class ArmourRegistry {
|
||||||
private 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")
|
@SuppressWarnings("unchecked")
|
||||||
public static <T extends IArmourModel> IArmour<T> getArmour(ItemStack stack, IArmour<T> fallback) {
|
public static <T extends IArmourModel> IArmour<T> getArmour(ItemStack stack, IArmour<T> fallback) {
|
||||||
|
|
Loading…
Reference in a new issue