From 13cfc2c312f094ff5521118b979e0f40118af445 Mon Sep 17 00:00:00 2001 From: Federico Kamelhar Date: Fri, 21 Nov 2025 12:18:43 -0500 Subject: [PATCH] Fix texture reference issues (#90, #91) - Fix issue #91: Correct campghost_armor texture reference to creeper_armor The texture file is creeper_armor.png, not campghost_armor.png - Fix issue #90: Add missing texture_name field to item_texture.json Added 'texture_name': 'atlas.items' which was causing errors for the leaf bag item --- .../resource_packs/creator_camp/entity/campghost.entity.json | 2 +- .../resource_packs/creator_camp/textures/item_texture.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/creator_camp/resource_packs/creator_camp/entity/campghost.entity.json b/creator_camp/resource_packs/creator_camp/entity/campghost.entity.json index 7df00b0..87850a9 100644 --- a/creator_camp/resource_packs/creator_camp/entity/campghost.entity.json +++ b/creator_camp/resource_packs/creator_camp/entity/campghost.entity.json @@ -10,7 +10,7 @@ }, "textures": { "default": "textures/entity/campghost/campghost", - "charged": "textures/entity/campghost/campghost_armor" + "charged": "textures/entity/campghost/creeper_armor" }, "geometry": { "default": "geometry.campghost.v1.8", diff --git a/creator_camp/resource_packs/creator_camp/textures/item_texture.json b/creator_camp/resource_packs/creator_camp/textures/item_texture.json index 6b637dc..dc01541 100644 --- a/creator_camp/resource_packs/creator_camp/textures/item_texture.json +++ b/creator_camp/resource_packs/creator_camp/textures/item_texture.json @@ -1,5 +1,6 @@ { "resource_pack_name": "Creator Camp 2025 - Item Demo", + "texture_name": "atlas.items", "texture_data": { "ccid:leaf_bag": { "textures": "textures/items/leaf_bag"