From 77b2902b549a6a085d68fad1ba0bb104942c2d0c Mon Sep 17 00:00:00 2001 From: Me <135455255+IcarussOne@users.noreply.github.com> Date: Sat, 5 Oct 2024 04:04:58 -0500 Subject: [PATCH] Comment out WIP trophy code --- .../tileentity/TileEntityTFTrophyRenderer.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/twilightforest/client/renderer/tileentity/TileEntityTFTrophyRenderer.java b/src/main/java/twilightforest/client/renderer/tileentity/TileEntityTFTrophyRenderer.java index efe1f7b548..80af691f5b 100644 --- a/src/main/java/twilightforest/client/renderer/tileentity/TileEntityTFTrophyRenderer.java +++ b/src/main/java/twilightforest/client/renderer/tileentity/TileEntityTFTrophyRenderer.java @@ -60,8 +60,8 @@ public static class DummyTile extends TileEntityTFTrophy { private static final ResourceLocation textureLocQuestRam = TwilightForestMod.getModelTexture("questram.png"); private static final ResourceLocation textureLocQuestRamLines = TwilightForestMod.getModelTexture("questram_lines.png"); - private final ModelTFYetiAlpha eliteYetiModel = new ModelTFYetiAlpha(); - private static final ResourceLocation textureLocEliteYeti = TwilightForestMod.getModelTexture("yetialpha.png"); + //private final ModelTFYetiAlpha eliteYetiModel = new ModelTFYetiAlpha(); + //private static final ResourceLocation textureLocEliteYeti = TwilightForestMod.getModelTexture("yetialpha.png"); /*private final ModelTFKobold finalKoboldModel = new ModelTFKobold(); private static final ResourceLocation textureLocFinalKobold = TwilightForestMod.getModelTexture("kobold.png");*/ @@ -208,9 +208,9 @@ public void render(@Nullable TileEntityTFTrophy trophy, double x, double y, doub case FINAL_BOSS: renderWroughtnautHead(rotation, onGround); break; - case ELITE_YETI: + /*case ELITE_YETI: renderEliteYetiHead(rotation, onGround); - break; + break;*/ default: break; } @@ -463,7 +463,7 @@ private void renderWroughtnautHead(float rotation, boolean onGround) { new ModelWroughtnaut().head.render(0.0625F); } - private void renderEliteYetiHead(float rotation, boolean onGround) { + /*private void renderEliteYetiHead(float rotation, boolean onGround) { GlStateManager.translate(0, 1, 0); this.bindTexture(textureLocEliteYeti); @@ -478,5 +478,5 @@ private void renderEliteYetiHead(float rotation, boolean onGround) { // render the head eliteYetiModel.bipedHead.render(0.0625F); - } + }*/ }