From 6d19cbef9d7c3ce1798bb45e17a1bc164d78eefe Mon Sep 17 00:00:00 2001 From: wwarpigg Date: Sat, 18 Jul 2026 13:56:17 -0500 Subject: [PATCH] Update for Minecraft 26.1 texture paths and BlueMap 5.21+ API --- build.gradle.kts | 8 ++++---- gradle/wrapper/gradle-wrapper.properties | 2 +- .../entities/renderer/CustomResourceModelRenderer.java | 3 ++- .../models/entity/armadillo/armadillo_adult.json | 2 +- .../models/entity/armadillo/armadillo_adult_scared.json | 2 +- .../minecraft/models/entity/armadillo/armadillo_baby.json | 2 +- .../models/entity/armadillo/armadillo_baby_scared.json | 2 +- .../resources/assets/minecraft/models/entity/bat.json | 2 +- .../models/entity/cat/color/cat_adult_all_black.json | 2 +- .../models/entity/cat/color/cat_adult_black.json | 2 +- .../entity/cat/color/cat_adult_british_shorthair.json | 2 +- .../models/entity/cat/color/cat_adult_calico.json | 2 +- .../models/entity/cat/color/cat_adult_jellie.json | 2 +- .../models/entity/cat/color/cat_adult_persian.json | 2 +- .../models/entity/cat/color/cat_adult_ragdoll.json | 2 +- .../minecraft/models/entity/cat/color/cat_adult_red.json | 2 +- .../models/entity/cat/color/cat_adult_siamese.json | 2 +- .../models/entity/cat/color/cat_adult_tabby.json | 2 +- .../models/entity/cat/color/cat_adult_white.json | 2 +- .../models/entity/cat/color/cat_baby_all_black.json | 2 +- .../minecraft/models/entity/cat/color/cat_baby_black.json | 2 +- .../entity/cat/color/cat_baby_british_shorthair.json | 2 +- .../models/entity/cat/color/cat_baby_calico.json | 2 +- .../models/entity/cat/color/cat_baby_jellie.json | 2 +- .../models/entity/cat/color/cat_baby_persian.json | 2 +- .../models/entity/cat/color/cat_baby_ragdoll.json | 2 +- .../minecraft/models/entity/cat/color/cat_baby_red.json | 2 +- .../models/entity/cat/color/cat_baby_siamese.json | 2 +- .../minecraft/models/entity/cat/color/cat_baby_tabby.json | 2 +- .../minecraft/models/entity/cat/color/cat_baby_white.json | 2 +- .../assets/minecraft/models/entity/chicken/adult.json | 2 +- .../minecraft/models/entity/chicken/adult_cold.json | 2 +- .../minecraft/models/entity/chicken/adult_temperate.json | 2 +- .../minecraft/models/entity/chicken/adult_warm.json | 2 +- .../assets/minecraft/models/entity/chicken/baby.json | 2 +- .../assets/minecraft/models/entity/chicken/baby_cold.json | 2 +- .../minecraft/models/entity/chicken/baby_temperate.json | 2 +- .../assets/minecraft/models/entity/chicken/baby_warm.json | 2 +- .../copper_golem/exposed_copper_golem_statue_alive.json | 4 ++-- .../copper_golem/oxidized_copper_golem_statue_alive.json | 4 ++-- .../copper_golem/weathered_copper_golem_statue_alive.json | 4 ++-- .../assets/minecraft/models/entity/cow/adult_cold.json | 2 +- .../minecraft/models/entity/cow/adult_temperate.json | 2 +- .../assets/minecraft/models/entity/cow/adult_warm.json | 2 +- .../assets/minecraft/models/entity/cow/baby_cold.json | 2 +- .../minecraft/models/entity/cow/baby_temperate.json | 2 +- .../assets/minecraft/models/entity/cow/baby_warm.json | 2 +- .../assets/minecraft/models/entity/dolphin/adult.json | 2 +- .../assets/minecraft/models/entity/dolphin/baby.json | 2 +- .../assets/minecraft/models/entity/fox/adult_snow.json | 2 +- .../assets/minecraft/models/entity/fox/baby_snow.json | 2 +- .../minecraft/models/entity/frog/variant/frog_cold.json | 2 +- .../models/entity/frog/variant/frog_temperate.json | 2 +- .../minecraft/models/entity/frog/variant/frog_warm.json | 2 +- .../assets/minecraft/models/entity/guardian/guardian.json | 2 +- .../models/entity/llama/color/llama_adult_brown.json | 2 +- .../models/entity/llama/color/llama_adult_creamy.json | 2 +- .../models/entity/llama/color/llama_adult_gray.json | 2 +- .../models/entity/llama/color/llama_adult_white.json | 2 +- .../models/entity/llama/color/llama_baby_brown.json | 2 +- .../models/entity/llama/color/llama_baby_creamy.json | 2 +- .../models/entity/llama/color/llama_baby_gray.json | 2 +- .../models/entity/llama/color/llama_baby_white.json | 2 +- .../assets/minecraft/models/entity/llama/llama_chest.json | 2 +- .../assets/minecraft/models/entity/pig/adult_cold.json | 2 +- .../minecraft/models/entity/pig/adult_temperate.json | 2 +- .../assets/minecraft/models/entity/pig/adult_warm.json | 2 +- .../assets/minecraft/models/entity/pig/baby_cold.json | 2 +- .../minecraft/models/entity/pig/baby_temperate.json | 2 +- .../assets/minecraft/models/entity/pig/baby_warm.json | 2 +- .../assets/minecraft/models/entity/snow_golem.json | 2 +- 71 files changed, 78 insertions(+), 77 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index e922ce4..f755046 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,13 +12,13 @@ repositories { } dependencies { - compileOnly ( "de.bluecolored:bluemap-core:5.13" ) - compileOnly ( "org.projectlombok:lombok:1.18.32" ) - annotationProcessor ( "org.projectlombok:lombok:1.18.32" ) + compileOnly ( "de.bluecolored:bluemap-core:5.22" ) + compileOnly ( "org.projectlombok:lombok:1.18.42" ) + annotationProcessor ( "org.projectlombok:lombok:1.18.42" ) } java { - toolchain.languageVersion = JavaLanguageVersion.of(21) + toolchain.languageVersion = JavaLanguageVersion.of(25) withSourcesJar() } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 9144876..a3396e3 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/src/main/java/de/bluecolored/bluemap/entities/renderer/CustomResourceModelRenderer.java b/src/main/java/de/bluecolored/bluemap/entities/renderer/CustomResourceModelRenderer.java index cca4185..69ca83f 100644 --- a/src/main/java/de/bluecolored/bluemap/entities/renderer/CustomResourceModelRenderer.java +++ b/src/main/java/de/bluecolored/bluemap/entities/renderer/CustomResourceModelRenderer.java @@ -39,6 +39,7 @@ import de.bluecolored.bluemap.core.resources.pack.resourcepack.model.Model; import de.bluecolored.bluemap.core.resources.pack.resourcepack.texture.Texture; import de.bluecolored.bluemap.core.util.Direction; +import de.bluecolored.bluemap.core.util.Key; import de.bluecolored.bluemap.core.util.math.Color; import de.bluecolored.bluemap.core.util.math.MatrixM4f; import de.bluecolored.bluemap.core.util.math.VectorM2f; @@ -57,7 +58,7 @@ public class CustomResourceModelRenderer implements EntityRenderer { private static final float SCALE = 1f / 16f; - @Getter private final Function, Model> modelProvider; + @Getter private final Function modelProvider; @Getter private final TextureGallery textureGallery; @Getter private final RenderSettings renderSettings; diff --git a/src/main/resources/assets/minecraft/models/entity/armadillo/armadillo_adult.json b/src/main/resources/assets/minecraft/models/entity/armadillo/armadillo_adult.json index 04e76e3..1379655 100644 --- a/src/main/resources/assets/minecraft/models/entity/armadillo/armadillo_adult.json +++ b/src/main/resources/assets/minecraft/models/entity/armadillo/armadillo_adult.json @@ -3,7 +3,7 @@ "credit": "Made by Miraculixx", "texture_size": [64, 64], "textures": { - "0": "entity/armadillo" + "0": "entity/armadillo/armadillo" }, "elements": [ { diff --git a/src/main/resources/assets/minecraft/models/entity/armadillo/armadillo_adult_scared.json b/src/main/resources/assets/minecraft/models/entity/armadillo/armadillo_adult_scared.json index da59b82..724aefc 100644 --- a/src/main/resources/assets/minecraft/models/entity/armadillo/armadillo_adult_scared.json +++ b/src/main/resources/assets/minecraft/models/entity/armadillo/armadillo_adult_scared.json @@ -3,7 +3,7 @@ "credit": "Made by Miraculixx", "texture_size": [64, 64], "textures": { - "0": "entity/armadillo" + "0": "entity/armadillo/armadillo" }, "elements": [ { diff --git a/src/main/resources/assets/minecraft/models/entity/armadillo/armadillo_baby.json b/src/main/resources/assets/minecraft/models/entity/armadillo/armadillo_baby.json index 9d12411..fbe11d2 100644 --- a/src/main/resources/assets/minecraft/models/entity/armadillo/armadillo_baby.json +++ b/src/main/resources/assets/minecraft/models/entity/armadillo/armadillo_baby.json @@ -3,7 +3,7 @@ "credit": "Made by Miraculixx", "texture_size": [64, 64], "textures": { - "0": "entity/armadillo" + "0": "entity/armadillo/armadillo" }, "elements": [ { diff --git a/src/main/resources/assets/minecraft/models/entity/armadillo/armadillo_baby_scared.json b/src/main/resources/assets/minecraft/models/entity/armadillo/armadillo_baby_scared.json index 7775d86..65c819f 100644 --- a/src/main/resources/assets/minecraft/models/entity/armadillo/armadillo_baby_scared.json +++ b/src/main/resources/assets/minecraft/models/entity/armadillo/armadillo_baby_scared.json @@ -3,7 +3,7 @@ "credit": "Made by Miraculixx", "texture_size": [64, 64], "textures": { - "0": "entity/armadillo" + "0": "entity/armadillo/armadillo" }, "elements": [ { diff --git a/src/main/resources/assets/minecraft/models/entity/bat.json b/src/main/resources/assets/minecraft/models/entity/bat.json index 9be433b..7001ecf 100644 --- a/src/main/resources/assets/minecraft/models/entity/bat.json +++ b/src/main/resources/assets/minecraft/models/entity/bat.json @@ -3,7 +3,7 @@ "credit": "Made by Miraculixx", "texture_size": [32, 32], "textures": { - "0": "entity/bat" + "0": "entity/bat/bat" }, "elements": [ { diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_all_black.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_all_black.json index 7fe7d9e..32da99b 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_all_black.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_all_black.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat", "textures": { - "0": "entity/cat/all_black" + "0": "entity/cat/cat_all_black" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_black.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_black.json index e4d8c57..71f7159 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_black.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_black.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat", "textures": { - "0": "entity/cat/black" + "0": "entity/cat/cat_black" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_british_shorthair.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_british_shorthair.json index a954e4f..db44ff9 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_british_shorthair.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_british_shorthair.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat", "textures": { - "0": "entity/cat/british_shorthair" + "0": "entity/cat/cat_british_shorthair" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_calico.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_calico.json index 52dc45b..97592f4 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_calico.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_calico.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat", "textures": { - "0": "entity/cat/calico" + "0": "entity/cat/cat_calico" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_jellie.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_jellie.json index d8a1fba..655b10a 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_jellie.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_jellie.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat", "textures": { - "0": "entity/cat/jellie" + "0": "entity/cat/cat_jellie" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_persian.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_persian.json index 95c487a..012ea22 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_persian.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_persian.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat", "textures": { - "0": "entity/cat/persian" + "0": "entity/cat/cat_persian" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_ragdoll.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_ragdoll.json index 6f6b1cf..bb81747 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_ragdoll.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_ragdoll.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat", "textures": { - "0": "entity/cat/ragdoll" + "0": "entity/cat/cat_ragdoll" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_red.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_red.json index 500ebd6..31a5046 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_red.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_red.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat", "textures": { - "0": "entity/cat/red" + "0": "entity/cat/cat_red" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_siamese.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_siamese.json index 156fd30..d22b5c8 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_siamese.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_siamese.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat", "textures": { - "0": "entity/cat/siamese" + "0": "entity/cat/cat_siamese" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_tabby.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_tabby.json index f26aef5..59eb193 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_tabby.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_tabby.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat", "textures": { - "0": "entity/cat/tabby" + "0": "entity/cat/cat_tabby" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_white.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_white.json index 9eb4be4..7cc28d6 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_white.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_adult_white.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat", "textures": { - "0": "entity/cat/white" + "0": "entity/cat/cat_white" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_all_black.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_all_black.json index e17b905..bc88275 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_all_black.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_all_black.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat_baby", "textures": { - "0": "entity/cat/all_black" + "0": "entity/cat/cat_all_black" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_black.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_black.json index a9a8417..9e895f0 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_black.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_black.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat_baby", "textures": { - "0": "entity/cat/black" + "0": "entity/cat/cat_black" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_british_shorthair.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_british_shorthair.json index 8ec0e90..928fb1b 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_british_shorthair.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_british_shorthair.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat_baby", "textures": { - "0": "entity/cat/british_shorthair" + "0": "entity/cat/cat_british_shorthair" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_calico.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_calico.json index e4ec2e6..d54ca58 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_calico.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_calico.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat_baby", "textures": { - "0": "entity/cat/calico" + "0": "entity/cat/cat_calico" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_jellie.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_jellie.json index 888d346..d234894 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_jellie.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_jellie.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat_baby", "textures": { - "0": "entity/cat/jellie" + "0": "entity/cat/cat_jellie" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_persian.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_persian.json index 3cfa299..ab1be9d 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_persian.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_persian.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat_baby", "textures": { - "0": "entity/cat/persian" + "0": "entity/cat/cat_persian" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_ragdoll.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_ragdoll.json index b5fc037..1b725e6 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_ragdoll.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_ragdoll.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat_baby", "textures": { - "0": "entity/cat/ragdoll" + "0": "entity/cat/cat_ragdoll" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_red.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_red.json index b7d00c2..2baf649 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_red.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_red.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat_baby", "textures": { - "0": "entity/cat/red" + "0": "entity/cat/cat_red" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_siamese.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_siamese.json index 72affd7..6dc6a53 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_siamese.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_siamese.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat_baby", "textures": { - "0": "entity/cat/siamese" + "0": "entity/cat/cat_siamese" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_tabby.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_tabby.json index 85b6ea1..329bc99 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_tabby.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_tabby.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat_baby", "textures": { - "0": "entity/cat/tabby" + "0": "entity/cat/cat_tabby" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_white.json b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_white.json index 33b7125..984b65f 100644 --- a/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_white.json +++ b/src/main/resources/assets/minecraft/models/entity/cat/color/cat_baby_white.json @@ -1,6 +1,6 @@ { "parent": "entity/cat/cat_baby", "textures": { - "0": "entity/cat/white" + "0": "entity/cat/cat_white" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/chicken/adult.json b/src/main/resources/assets/minecraft/models/entity/chicken/adult.json index 58d3391..75e5a57 100644 --- a/src/main/resources/assets/minecraft/models/entity/chicken/adult.json +++ b/src/main/resources/assets/minecraft/models/entity/chicken/adult.json @@ -2,7 +2,7 @@ "credit": "Model by Miraculixx", "texture_size": [64, 32], "textures": { - "0": "entity/chicken/temperate_chicken" + "0": "entity/chicken/chicken_temperate" }, "elements": [ { diff --git a/src/main/resources/assets/minecraft/models/entity/chicken/adult_cold.json b/src/main/resources/assets/minecraft/models/entity/chicken/adult_cold.json index f2c1a7d..03c8257 100644 --- a/src/main/resources/assets/minecraft/models/entity/chicken/adult_cold.json +++ b/src/main/resources/assets/minecraft/models/entity/chicken/adult_cold.json @@ -1,6 +1,6 @@ { "parent": "minecraft:entity/chicken/adult", "textures": { - "0": "entity/chicken/cold_chicken" + "0": "entity/chicken/chicken_cold" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/chicken/adult_temperate.json b/src/main/resources/assets/minecraft/models/entity/chicken/adult_temperate.json index 6f95b95..cf3e336 100644 --- a/src/main/resources/assets/minecraft/models/entity/chicken/adult_temperate.json +++ b/src/main/resources/assets/minecraft/models/entity/chicken/adult_temperate.json @@ -1,6 +1,6 @@ { "parent": "minecraft:entity/chicken/adult", "textures": { - "0": "entity/chicken/temperate_chicken" + "0": "entity/chicken/chicken_temperate" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/chicken/adult_warm.json b/src/main/resources/assets/minecraft/models/entity/chicken/adult_warm.json index 6e80f0c..abcce6c 100644 --- a/src/main/resources/assets/minecraft/models/entity/chicken/adult_warm.json +++ b/src/main/resources/assets/minecraft/models/entity/chicken/adult_warm.json @@ -1,6 +1,6 @@ { "parent": "minecraft:entity/chicken/adult", "textures": { - "0": "entity/chicken/warm_chicken" + "0": "entity/chicken/chicken_warm" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/chicken/baby.json b/src/main/resources/assets/minecraft/models/entity/chicken/baby.json index a93bf4d..2985291 100644 --- a/src/main/resources/assets/minecraft/models/entity/chicken/baby.json +++ b/src/main/resources/assets/minecraft/models/entity/chicken/baby.json @@ -2,7 +2,7 @@ "credit": "Model by Miraculixx", "texture_size": [64, 32], "textures": { - "0": "entity/chicken/temperate_chicken" + "0": "entity/chicken/chicken_temperate" }, "elements": [ { diff --git a/src/main/resources/assets/minecraft/models/entity/chicken/baby_cold.json b/src/main/resources/assets/minecraft/models/entity/chicken/baby_cold.json index dc4bd63..21af82f 100644 --- a/src/main/resources/assets/minecraft/models/entity/chicken/baby_cold.json +++ b/src/main/resources/assets/minecraft/models/entity/chicken/baby_cold.json @@ -1,6 +1,6 @@ { "parent": "minecraft:entity/chicken/baby", "textures": { - "0": "entity/chicken/cold_chicken" + "0": "entity/chicken/chicken_cold" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/chicken/baby_temperate.json b/src/main/resources/assets/minecraft/models/entity/chicken/baby_temperate.json index a172512..feee38f 100644 --- a/src/main/resources/assets/minecraft/models/entity/chicken/baby_temperate.json +++ b/src/main/resources/assets/minecraft/models/entity/chicken/baby_temperate.json @@ -1,6 +1,6 @@ { "parent": "minecraft:entity/chicken/baby", "textures": { - "0": "entity/chicken/temperate_chicken" + "0": "entity/chicken/chicken_temperate" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/chicken/baby_warm.json b/src/main/resources/assets/minecraft/models/entity/chicken/baby_warm.json index 82be5da..8d21394 100644 --- a/src/main/resources/assets/minecraft/models/entity/chicken/baby_warm.json +++ b/src/main/resources/assets/minecraft/models/entity/chicken/baby_warm.json @@ -1,6 +1,6 @@ { "parent": "minecraft:entity/chicken/baby", "textures": { - "0": "entity/chicken/warm_chicken" + "0": "entity/chicken/chicken_warm" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/copper_golem/exposed_copper_golem_statue_alive.json b/src/main/resources/assets/minecraft/models/entity/copper_golem/exposed_copper_golem_statue_alive.json index cccd8e8..d3d089c 100644 --- a/src/main/resources/assets/minecraft/models/entity/copper_golem/exposed_copper_golem_statue_alive.json +++ b/src/main/resources/assets/minecraft/models/entity/copper_golem/exposed_copper_golem_statue_alive.json @@ -1,7 +1,7 @@ { "parent": "entity/copper_golem/copper_golem_statue_alive", "textures": { - "golem": "entity/copper_golem/exposed_copper_golem", - "1": "entity/copper_golem/exposed_copper_golem_eyes" + "golem": "entity/copper_golem/copper_golem_exposed", + "1": "entity/copper_golem/copper_golem_eyes_exposed" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/copper_golem/oxidized_copper_golem_statue_alive.json b/src/main/resources/assets/minecraft/models/entity/copper_golem/oxidized_copper_golem_statue_alive.json index 5c345c8..dff1cda 100644 --- a/src/main/resources/assets/minecraft/models/entity/copper_golem/oxidized_copper_golem_statue_alive.json +++ b/src/main/resources/assets/minecraft/models/entity/copper_golem/oxidized_copper_golem_statue_alive.json @@ -1,7 +1,7 @@ { "parent": "entity/copper_golem/copper_golem_statue_alive", "textures": { - "golem": "entity/copper_golem/oxidized_copper_golem", - "1": "entity/copper_golem/oxidized_copper_golem_eyes" + "golem": "entity/copper_golem/copper_golem_oxidized", + "1": "entity/copper_golem/copper_golem_eyes_oxidized" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/copper_golem/weathered_copper_golem_statue_alive.json b/src/main/resources/assets/minecraft/models/entity/copper_golem/weathered_copper_golem_statue_alive.json index d93481c..d2702d2 100644 --- a/src/main/resources/assets/minecraft/models/entity/copper_golem/weathered_copper_golem_statue_alive.json +++ b/src/main/resources/assets/minecraft/models/entity/copper_golem/weathered_copper_golem_statue_alive.json @@ -1,7 +1,7 @@ { "parent": "entity/copper_golem/copper_golem_statue_alive", "textures": { - "golem": "entity/copper_golem/weathered_copper_golem", - "1": "entity/copper_golem/weathered_copper_golem_eyes" + "golem": "entity/copper_golem/copper_golem_weathered", + "1": "entity/copper_golem/copper_golem_eyes_weathered" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cow/adult_cold.json b/src/main/resources/assets/minecraft/models/entity/cow/adult_cold.json index 8afb754..0ed7a1d 100644 --- a/src/main/resources/assets/minecraft/models/entity/cow/adult_cold.json +++ b/src/main/resources/assets/minecraft/models/entity/cow/adult_cold.json @@ -1,6 +1,6 @@ { "parent": "minecraft:entity/cow/adult", "textures": { - "0": "entity/cow/cold_cow" + "0": "entity/cow/cow_cold" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cow/adult_temperate.json b/src/main/resources/assets/minecraft/models/entity/cow/adult_temperate.json index 51e6265..9d0f485 100644 --- a/src/main/resources/assets/minecraft/models/entity/cow/adult_temperate.json +++ b/src/main/resources/assets/minecraft/models/entity/cow/adult_temperate.json @@ -1,6 +1,6 @@ { "parent": "minecraft:entity/cow/adult", "textures": { - "0": "entity/cow/temperate_cow" + "0": "entity/cow/cow_temperate" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cow/adult_warm.json b/src/main/resources/assets/minecraft/models/entity/cow/adult_warm.json index b9d368c..51319a3 100644 --- a/src/main/resources/assets/minecraft/models/entity/cow/adult_warm.json +++ b/src/main/resources/assets/minecraft/models/entity/cow/adult_warm.json @@ -1,6 +1,6 @@ { "parent": "minecraft:entity/cow/adult", "textures": { - "0": "entity/cow/warm_cow" + "0": "entity/cow/cow_warm" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cow/baby_cold.json b/src/main/resources/assets/minecraft/models/entity/cow/baby_cold.json index a30d40e..6ed359c 100644 --- a/src/main/resources/assets/minecraft/models/entity/cow/baby_cold.json +++ b/src/main/resources/assets/minecraft/models/entity/cow/baby_cold.json @@ -1,6 +1,6 @@ { "parent": "minecraft:entity/cow/baby", "textures": { - "0": "entity/cow/cold_cow" + "0": "entity/cow/cow_cold" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cow/baby_temperate.json b/src/main/resources/assets/minecraft/models/entity/cow/baby_temperate.json index eb6e7c9..ebdbd19 100644 --- a/src/main/resources/assets/minecraft/models/entity/cow/baby_temperate.json +++ b/src/main/resources/assets/minecraft/models/entity/cow/baby_temperate.json @@ -1,6 +1,6 @@ { "parent": "minecraft:entity/cow/baby", "textures": { - "0": "entity/cow/temperate_cow" + "0": "entity/cow/cow_temperate" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/cow/baby_warm.json b/src/main/resources/assets/minecraft/models/entity/cow/baby_warm.json index 45b68a1..f74f105 100644 --- a/src/main/resources/assets/minecraft/models/entity/cow/baby_warm.json +++ b/src/main/resources/assets/minecraft/models/entity/cow/baby_warm.json @@ -1,6 +1,6 @@ { "parent": "minecraft:entity/cow/baby", "textures": { - "0": "entity/cow/warm_cow" + "0": "entity/cow/cow_warm" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/dolphin/adult.json b/src/main/resources/assets/minecraft/models/entity/dolphin/adult.json index 97e5971..6d07513 100644 --- a/src/main/resources/assets/minecraft/models/entity/dolphin/adult.json +++ b/src/main/resources/assets/minecraft/models/entity/dolphin/adult.json @@ -3,7 +3,7 @@ "credit": "Made by Miraculixx", "texture_size": [64, 64], "textures": { - "0": "entity/dolphin" + "0": "entity/dolphin/dolphin" }, "elements": [ { diff --git a/src/main/resources/assets/minecraft/models/entity/dolphin/baby.json b/src/main/resources/assets/minecraft/models/entity/dolphin/baby.json index 1c10c24..2f750cc 100644 --- a/src/main/resources/assets/minecraft/models/entity/dolphin/baby.json +++ b/src/main/resources/assets/minecraft/models/entity/dolphin/baby.json @@ -3,7 +3,7 @@ "credit": "Made by Miraculixx", "texture_size": [64, 64], "textures": { - "0": "entity/dolphin" + "0": "entity/dolphin/dolphin" }, "elements": [ { diff --git a/src/main/resources/assets/minecraft/models/entity/fox/adult_snow.json b/src/main/resources/assets/minecraft/models/entity/fox/adult_snow.json index 0fc3fc8..c8df860 100644 --- a/src/main/resources/assets/minecraft/models/entity/fox/adult_snow.json +++ b/src/main/resources/assets/minecraft/models/entity/fox/adult_snow.json @@ -1,6 +1,6 @@ { "parent": "entity/fox/adult", "textures": { - "0": "entity/fox/snow_fox" + "0": "entity/fox/fox_snow" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/fox/baby_snow.json b/src/main/resources/assets/minecraft/models/entity/fox/baby_snow.json index db0dcb6..5aeb9cb 100644 --- a/src/main/resources/assets/minecraft/models/entity/fox/baby_snow.json +++ b/src/main/resources/assets/minecraft/models/entity/fox/baby_snow.json @@ -1,6 +1,6 @@ { "parent": "entity/fox/baby", "textures": { - "0": "entity/fox/snow_fox" + "0": "entity/fox/fox_snow" } } diff --git a/src/main/resources/assets/minecraft/models/entity/frog/variant/frog_cold.json b/src/main/resources/assets/minecraft/models/entity/frog/variant/frog_cold.json index cd87406..ddc6ef9 100644 --- a/src/main/resources/assets/minecraft/models/entity/frog/variant/frog_cold.json +++ b/src/main/resources/assets/minecraft/models/entity/frog/variant/frog_cold.json @@ -1,6 +1,6 @@ { "parent": "entity/frog/frog", "textures": { - "0": "entity/frog/cold_frog" + "0": "entity/frog/frog_cold" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/frog/variant/frog_temperate.json b/src/main/resources/assets/minecraft/models/entity/frog/variant/frog_temperate.json index a87fb10..1539255 100644 --- a/src/main/resources/assets/minecraft/models/entity/frog/variant/frog_temperate.json +++ b/src/main/resources/assets/minecraft/models/entity/frog/variant/frog_temperate.json @@ -1,6 +1,6 @@ { "parent": "entity/frog/frog", "textures": { - "0": "entity/frog/temperate_frog" + "0": "entity/frog/frog_temperate" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/frog/variant/frog_warm.json b/src/main/resources/assets/minecraft/models/entity/frog/variant/frog_warm.json index b0cf4e1..5bbfc17 100644 --- a/src/main/resources/assets/minecraft/models/entity/frog/variant/frog_warm.json +++ b/src/main/resources/assets/minecraft/models/entity/frog/variant/frog_warm.json @@ -1,6 +1,6 @@ { "parent": "entity/frog/frog", "textures": { - "0": "entity/frog/warm_frog" + "0": "entity/frog/frog_warm" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/guardian/guardian.json b/src/main/resources/assets/minecraft/models/entity/guardian/guardian.json index 9fa8d91..4761936 100644 --- a/src/main/resources/assets/minecraft/models/entity/guardian/guardian.json +++ b/src/main/resources/assets/minecraft/models/entity/guardian/guardian.json @@ -3,7 +3,7 @@ "credit": "Made by Miraculixx", "texture_size": [64, 64], "textures": { - "0": "entity/guardian" + "0": "entity/guardian/guardian" }, "elements": [ { diff --git a/src/main/resources/assets/minecraft/models/entity/llama/color/llama_adult_brown.json b/src/main/resources/assets/minecraft/models/entity/llama/color/llama_adult_brown.json index aae2828..a77e6f0 100644 --- a/src/main/resources/assets/minecraft/models/entity/llama/color/llama_adult_brown.json +++ b/src/main/resources/assets/minecraft/models/entity/llama/color/llama_adult_brown.json @@ -1,6 +1,6 @@ { "parent": "entity/llama/llama", "textures": { - "0": "entity/llama/brown" + "0": "entity/llama/llama_brown" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/llama/color/llama_adult_creamy.json b/src/main/resources/assets/minecraft/models/entity/llama/color/llama_adult_creamy.json index 4d5dcbf..9ceccbe 100644 --- a/src/main/resources/assets/minecraft/models/entity/llama/color/llama_adult_creamy.json +++ b/src/main/resources/assets/minecraft/models/entity/llama/color/llama_adult_creamy.json @@ -1,6 +1,6 @@ { "parent": "entity/llama/llama", "textures": { - "0": "entity/llama/creamy" + "0": "entity/llama/llama_creamy" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/llama/color/llama_adult_gray.json b/src/main/resources/assets/minecraft/models/entity/llama/color/llama_adult_gray.json index c230a77..75e5d44 100644 --- a/src/main/resources/assets/minecraft/models/entity/llama/color/llama_adult_gray.json +++ b/src/main/resources/assets/minecraft/models/entity/llama/color/llama_adult_gray.json @@ -1,6 +1,6 @@ { "parent": "entity/llama/llama", "textures": { - "0": "entity/llama/gray" + "0": "entity/llama/llama_gray" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/llama/color/llama_adult_white.json b/src/main/resources/assets/minecraft/models/entity/llama/color/llama_adult_white.json index e4aa225..288262d 100644 --- a/src/main/resources/assets/minecraft/models/entity/llama/color/llama_adult_white.json +++ b/src/main/resources/assets/minecraft/models/entity/llama/color/llama_adult_white.json @@ -1,6 +1,6 @@ { "parent": "entity/llama/llama", "textures": { - "0": "entity/llama/white" + "0": "entity/llama/llama_white" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/llama/color/llama_baby_brown.json b/src/main/resources/assets/minecraft/models/entity/llama/color/llama_baby_brown.json index 948692c..a117034 100644 --- a/src/main/resources/assets/minecraft/models/entity/llama/color/llama_baby_brown.json +++ b/src/main/resources/assets/minecraft/models/entity/llama/color/llama_baby_brown.json @@ -1,6 +1,6 @@ { "parent": "entity/llama/llama_baby", "textures": { - "0": "entity/llama/brown" + "0": "entity/llama/llama_brown" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/llama/color/llama_baby_creamy.json b/src/main/resources/assets/minecraft/models/entity/llama/color/llama_baby_creamy.json index 3fd5f7d..d381a8b 100644 --- a/src/main/resources/assets/minecraft/models/entity/llama/color/llama_baby_creamy.json +++ b/src/main/resources/assets/minecraft/models/entity/llama/color/llama_baby_creamy.json @@ -1,6 +1,6 @@ { "parent": "entity/llama/llama_baby", "textures": { - "0": "entity/llama/creamy" + "0": "entity/llama/llama_creamy" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/llama/color/llama_baby_gray.json b/src/main/resources/assets/minecraft/models/entity/llama/color/llama_baby_gray.json index a993061..ff99df2 100644 --- a/src/main/resources/assets/minecraft/models/entity/llama/color/llama_baby_gray.json +++ b/src/main/resources/assets/minecraft/models/entity/llama/color/llama_baby_gray.json @@ -1,6 +1,6 @@ { "parent": "entity/llama/llama_baby", "textures": { - "0": "entity/llama/gray" + "0": "entity/llama/llama_gray" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/llama/color/llama_baby_white.json b/src/main/resources/assets/minecraft/models/entity/llama/color/llama_baby_white.json index 651fc98..efcd5bb 100644 --- a/src/main/resources/assets/minecraft/models/entity/llama/color/llama_baby_white.json +++ b/src/main/resources/assets/minecraft/models/entity/llama/color/llama_baby_white.json @@ -1,6 +1,6 @@ { "parent": "entity/llama/llama_baby", "textures": { - "0": "entity/llama/white" + "0": "entity/llama/llama_white" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/llama/llama_chest.json b/src/main/resources/assets/minecraft/models/entity/llama/llama_chest.json index 0babd2f..3987c6e 100644 --- a/src/main/resources/assets/minecraft/models/entity/llama/llama_chest.json +++ b/src/main/resources/assets/minecraft/models/entity/llama/llama_chest.json @@ -3,7 +3,7 @@ "credit": "Model by Miraculixx", "texture_size": [128, 64], "textures": { - "0": "entity/llama/brown" + "0": "entity/llama/llama_brown" }, "elements": [ { diff --git a/src/main/resources/assets/minecraft/models/entity/pig/adult_cold.json b/src/main/resources/assets/minecraft/models/entity/pig/adult_cold.json index 45fd42c..ea8c691 100644 --- a/src/main/resources/assets/minecraft/models/entity/pig/adult_cold.json +++ b/src/main/resources/assets/minecraft/models/entity/pig/adult_cold.json @@ -1,6 +1,6 @@ { "parent": "minecraft:entity/pig/adult", "textures": { - "0": "entity/pig/cold_pig" + "0": "entity/pig/pig_cold" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/pig/adult_temperate.json b/src/main/resources/assets/minecraft/models/entity/pig/adult_temperate.json index a3bf78d..524696c 100644 --- a/src/main/resources/assets/minecraft/models/entity/pig/adult_temperate.json +++ b/src/main/resources/assets/minecraft/models/entity/pig/adult_temperate.json @@ -1,6 +1,6 @@ { "parent": "minecraft:entity/pig/adult", "textures": { - "0": "entity/pig/temperate_pig" + "0": "entity/pig/pig_temperate" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/pig/adult_warm.json b/src/main/resources/assets/minecraft/models/entity/pig/adult_warm.json index 1f02f55..60936ce 100644 --- a/src/main/resources/assets/minecraft/models/entity/pig/adult_warm.json +++ b/src/main/resources/assets/minecraft/models/entity/pig/adult_warm.json @@ -1,6 +1,6 @@ { "parent": "minecraft:entity/pig/adult", "textures": { - "0": "entity/pig/warm_pig" + "0": "entity/pig/pig_warm" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/pig/baby_cold.json b/src/main/resources/assets/minecraft/models/entity/pig/baby_cold.json index 682618c..18fc0bc 100644 --- a/src/main/resources/assets/minecraft/models/entity/pig/baby_cold.json +++ b/src/main/resources/assets/minecraft/models/entity/pig/baby_cold.json @@ -1,6 +1,6 @@ { "parent": "minecraft:entity/pig/baby", "textures": { - "0": "entity/pig/cold_pig" + "0": "entity/pig/pig_cold" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/pig/baby_temperate.json b/src/main/resources/assets/minecraft/models/entity/pig/baby_temperate.json index f135f06..5eb82d8 100644 --- a/src/main/resources/assets/minecraft/models/entity/pig/baby_temperate.json +++ b/src/main/resources/assets/minecraft/models/entity/pig/baby_temperate.json @@ -1,6 +1,6 @@ { "parent": "minecraft:entity/pig/baby", "textures": { - "0": "entity/pig/temperate_pig" + "0": "entity/pig/pig_temperate" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/pig/baby_warm.json b/src/main/resources/assets/minecraft/models/entity/pig/baby_warm.json index feb778e..b1296e2 100644 --- a/src/main/resources/assets/minecraft/models/entity/pig/baby_warm.json +++ b/src/main/resources/assets/minecraft/models/entity/pig/baby_warm.json @@ -1,6 +1,6 @@ { "parent": "minecraft:entity/pig/baby", "textures": { - "0": "entity/pig/warm_pig" + "0": "entity/pig/pig_warm" } } \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/entity/snow_golem.json b/src/main/resources/assets/minecraft/models/entity/snow_golem.json index fea40a9..67b86d4 100644 --- a/src/main/resources/assets/minecraft/models/entity/snow_golem.json +++ b/src/main/resources/assets/minecraft/models/entity/snow_golem.json @@ -3,7 +3,7 @@ "credit": "Made by Miraculixx", "texture_size": [64, 64], "textures": { - "0": "entity/snow_golem" + "0": "entity/snow_golem/snow_golem" }, "elements": [ {