From 8fd4fef38b18244b2e728dce895728b043c70ce7 Mon Sep 17 00:00:00 2001 From: miozune Date: Wed, 8 Feb 2023 17:40:18 +0900 Subject: Remove a bunch of reflections against GT (#531) * Remove a bunch of reflections against GT * missed this one --- src/main/java/gtPlusPlus/core/proxy/ClientProxy.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/main/java/gtPlusPlus/core/proxy') diff --git a/src/main/java/gtPlusPlus/core/proxy/ClientProxy.java b/src/main/java/gtPlusPlus/core/proxy/ClientProxy.java index c98128dba6..95675b7ab3 100644 --- a/src/main/java/gtPlusPlus/core/proxy/ClientProxy.java +++ b/src/main/java/gtPlusPlus/core/proxy/ClientProxy.java @@ -43,7 +43,6 @@ import gtPlusPlus.core.lib.LoadedMods; import gtPlusPlus.core.tileentities.general.TileEntityDecayablesChest; import gtPlusPlus.core.tileentities.general.TileEntityFirepit; import gtPlusPlus.core.util.minecraft.particles.EntityParticleFXMysterious; -import gtPlusPlus.xmod.gregtech.common.Meta_GT_Proxy; import gtPlusPlus.xmod.gregtech.common.render.*; import ic2.core.item.ItemFluidCell; @@ -97,9 +96,7 @@ public class ClientProxy extends CommonProxy implements Runnable { new CustomItemBlockRenderer(); new GTPP_Render_MachineBlock(); - if (Meta_GT_Proxy.sDoesVolumetricFlaskExist) { - new GTPP_FlaskRenderer(); - } + new GTPP_FlaskRenderer(); super.init(e); } -- cgit