From 58265838b238aa40a08f03733b33f3e7ecec79df Mon Sep 17 00:00:00 2001 From: Sollace Date: Thu, 26 May 2022 00:44:13 +0200 Subject: [PATCH] Add namespace --- .../client/render/entity/npc/NpcClothingFeature.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/minelittlepony/client/render/entity/npc/NpcClothingFeature.java b/src/main/java/com/minelittlepony/client/render/entity/npc/NpcClothingFeature.java index 3a9a9fed..b2ccf494 100644 --- a/src/main/java/com/minelittlepony/client/render/entity/npc/NpcClothingFeature.java +++ b/src/main/java/com/minelittlepony/client/render/entity/npc/NpcClothingFeature.java @@ -85,7 +85,7 @@ class NpcClothingFeature< Identifier typeId = Registry.VILLAGER_TYPE.getId(type); Identifier profId = Registry.VILLAGER_PROFESSION.getId(profession); - Identifier key = new Identifier((typeId + "/" + profId + "/" + level).replace(':', '_')); + Identifier key = new Identifier("minelittlepony", (typeId + "/" + profId + "/" + level).replace(':', '_')); if (MinecraftClient.getInstance().getTextureManager().getOrDefault(key, null) == null) { TextureFlattener.flatten(computeTextures(type, profession, typeId, profId, level), (Identifier)key);