From 21cd47d06313cd544389caca5210e7bd633632e1 Mon Sep 17 00:00:00 2001 From: Bob Date: Sun, 1 Feb 2026 21:07:48 +0100 Subject: [PATCH] FUCK --- src/main/java/com/hbm/main/ResourceManager.java | 2 +- .../java/com/hbm/render/item/ItemRenderLibraryDoors.java | 4 ++-- .../com/hbm/render/tileentity/door/RenderVaultDoor.java | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/hbm/main/ResourceManager.java b/src/main/java/com/hbm/main/ResourceManager.java index 334cdee82..f67415062 100644 --- a/src/main/java/com/hbm/main/ResourceManager.java +++ b/src/main/java/com/hbm/main/ResourceManager.java @@ -334,7 +334,7 @@ public class ResourceManager { public static final ResourceLocation pheo_fire_door_tex = new ResourceLocation(RefStrings.MODID, "textures/models/pheodoors/fire_door.png"); public static final ResourceLocation pheo_fire_door_black_tex = new ResourceLocation(RefStrings.MODID, "textures/models/pheodoors/fire_door_black.png"); public static final ResourceLocation pheo_fire_door_orange_tex = new ResourceLocation(RefStrings.MODID, "textures/models/pheodoors/fire_door_orange.png"); - public static IModelCustomNamed pheo_fire_door = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/pheodoors/vault_door.obj")).asVBO(); + public static IModelCustomNamed pheo_fire_door = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/pheodoors/fire_door.obj")).asVBO(); public static final ResourceLocation pheo_airlock_door_tex = new ResourceLocation(RefStrings.MODID, "textures/models/pheodoors/airlock_door.png"); public static final ResourceLocation pheo_airlock_door_clean_tex = new ResourceLocation(RefStrings.MODID, "textures/models/pheodoors/airlock_door_clean.png"); public static final ResourceLocation pheo_airlock_door_green_tex = new ResourceLocation(RefStrings.MODID, "textures/models/pheodoors/airlock_door_green.png"); diff --git a/src/main/java/com/hbm/render/item/ItemRenderLibraryDoors.java b/src/main/java/com/hbm/render/item/ItemRenderLibraryDoors.java index a05feec60..6c5f68cc5 100644 --- a/src/main/java/com/hbm/render/item/ItemRenderLibraryDoors.java +++ b/src/main/java/com/hbm/render/item/ItemRenderLibraryDoors.java @@ -44,9 +44,9 @@ public class ItemRenderLibraryDoors { } bindTexture(doorTex); - ResourceManager.pheo_fire_door.renderPart("Door"); + ResourceManager.pheo_vault_door.renderPart("Door"); bindTexture(labelTex); - ResourceManager.pheo_fire_door.renderPart("Label"); + ResourceManager.pheo_vault_door.renderPart("Label"); } }); diff --git a/src/main/java/com/hbm/render/tileentity/door/RenderVaultDoor.java b/src/main/java/com/hbm/render/tileentity/door/RenderVaultDoor.java index 0a9ac64fb..75b4247a1 100644 --- a/src/main/java/com/hbm/render/tileentity/door/RenderVaultDoor.java +++ b/src/main/java/com/hbm/render/tileentity/door/RenderVaultDoor.java @@ -48,14 +48,14 @@ public class RenderVaultDoor implements IRenderDoors { double roll = 360D * slide / circumference; Minecraft.getMinecraft().getTextureManager().bindTexture(doorTex); - ResourceManager.pheo_fire_door.renderPart("Frame"); + ResourceManager.pheo_vault_door.renderPart("Frame"); GL11.glTranslated(-pull, 0, 0); GL11.glTranslated(0, 0, slide); GL11.glTranslated(0, 2.5, 0); GL11.glRotated(roll, 1, 0, 0); GL11.glTranslated(0, -2.5, 0); - ResourceManager.pheo_fire_door.renderPart("Door"); + ResourceManager.pheo_vault_door.renderPart("Door"); Minecraft.getMinecraft().getTextureManager().bindTexture(labelTex); - ResourceManager.pheo_fire_door.renderPart("Label"); + ResourceManager.pheo_vault_door.renderPart("Label"); } }