Register entities immediately within FMLClientSetupEvent (#1704)
This commit is contained in:
parent
990f67cf55
commit
204fbb3c28
|
@ -55,15 +55,15 @@ public class ClientEvents
|
||||||
@SuppressWarnings("deprecation")
|
@SuppressWarnings("deprecation")
|
||||||
public static void initClientEvents(FMLClientSetupEvent event)
|
public static void initClientEvents(FMLClientSetupEvent event)
|
||||||
{
|
{
|
||||||
|
RenderingRegistry.registerEntityRenderingHandler(BloodMagicEntityTypes.SNARE.getEntityType(), SoulSnareRenderer::new);
|
||||||
|
RenderingRegistry.registerEntityRenderingHandler(BloodMagicEntityTypes.BLOOD_LIGHT.getEntityType(), BloodLightRenderer::new);
|
||||||
|
|
||||||
DeferredWorkQueue.runLater(() -> {
|
DeferredWorkQueue.runLater(() -> {
|
||||||
RenderType rendertype = RenderType.getCutoutMipped();
|
RenderType rendertype = RenderType.getCutoutMipped();
|
||||||
RenderTypeLookup.setRenderLayer(BloodMagicBlocks.ALCHEMY_TABLE.get(), rendertype);
|
RenderTypeLookup.setRenderLayer(BloodMagicBlocks.ALCHEMY_TABLE.get(), rendertype);
|
||||||
|
|
||||||
ClientEvents.registerContainerScreens();
|
ClientEvents.registerContainerScreens();
|
||||||
|
|
||||||
RenderingRegistry.registerEntityRenderingHandler(BloodMagicEntityTypes.SNARE.getEntityType(), SoulSnareRenderer::new);
|
|
||||||
RenderingRegistry.registerEntityRenderingHandler(BloodMagicEntityTypes.BLOOD_LIGHT.getEntityType(), BloodLightRenderer::new);
|
|
||||||
|
|
||||||
registerToggleableProperties(BloodMagicItems.GREEN_GROVE_SIGIL.get());
|
registerToggleableProperties(BloodMagicItems.GREEN_GROVE_SIGIL.get());
|
||||||
registerToggleableProperties(BloodMagicItems.FAST_MINER_SIGIL.get());
|
registerToggleableProperties(BloodMagicItems.FAST_MINER_SIGIL.get());
|
||||||
registerToggleableProperties(BloodMagicItems.MAGNETISM_SIGIL.get());
|
registerToggleableProperties(BloodMagicItems.MAGNETISM_SIGIL.get());
|
||||||
|
|
Loading…
Reference in a new issue