fix #74
This commit is contained in:
parent
c77d2d96ea
commit
804bcecf38
2 changed files with 2 additions and 2 deletions
|
@ -95,7 +95,7 @@ public class BlockEntityConjured extends HexBlockEntity {
|
|||
|
||||
@Override
|
||||
protected void loadModData(CompoundTag tag) {
|
||||
this.setColorizer(FrozenColorizer.deserialize(tag.getCompound(TAG_COLORIZER)));
|
||||
this.colorizer = FrozenColorizer.deserialize(tag.getCompound(TAG_COLORIZER));
|
||||
}
|
||||
|
||||
public FrozenColorizer getColorizer() {
|
||||
|
|
|
@ -19,7 +19,7 @@ object FabricHexClientInitializer : ClientModInitializer {
|
|||
override fun onInitializeClient() {
|
||||
FabricPacketHandler.initClient()
|
||||
|
||||
WorldRenderEvents.BEFORE_DEBUG_RENDER.register { ctx ->
|
||||
WorldRenderEvents.LAST.register { ctx ->
|
||||
HexAdditionalRenderers.overlayLevel(ctx.matrixStack(), ctx.tickDelta())
|
||||
}
|
||||
HudRenderCallback.EVENT.register(HexAdditionalRenderers::overlayGui)
|
||||
|
|
Loading…
Reference in a new issue