From 000b84e87eaedb94fb87ccb11e376c51f99a1d07 Mon Sep 17 00:00:00 2001 From: Uko Kokņevičs Date: Wed, 10 Jan 2024 17:41:07 +0100 Subject: Added Energy Condenser --- .../lv/enes/mc/eris_alchemy/block/AlchemicalChestBlock.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/main/java/lv/enes/mc/eris_alchemy/block/AlchemicalChestBlock.java') diff --git a/src/main/java/lv/enes/mc/eris_alchemy/block/AlchemicalChestBlock.java b/src/main/java/lv/enes/mc/eris_alchemy/block/AlchemicalChestBlock.java index d50ee77..eb7cb6e 100644 --- a/src/main/java/lv/enes/mc/eris_alchemy/block/AlchemicalChestBlock.java +++ b/src/main/java/lv/enes/mc/eris_alchemy/block/AlchemicalChestBlock.java @@ -3,15 +3,15 @@ package lv.enes.mc.eris_alchemy.block; import jakarta.annotation.Nonnull; import jakarta.annotation.Nullable; import lv.enes.mc.eris_alchemy.ErisAlchemyRegistry; -import lv.enes.mc.eris_alchemy.block.entity.AlchemicalChestBlockEntity; +import lv.enes.mc.eris_alchemy.block.entity.AlchemicalChestEntity; import net.minecraft.core.BlockPos; import net.minecraft.network.chat.Component; import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.state.BlockState; -public class AlchemicalChestBlock extends ChestLikeBlock -{ - public static final Component CONTAINER_TITLE = Component.translatable("container.eris_alchemy.alchemical_chest"); +public class AlchemicalChestBlock extends ChestLikeBlock { + public static final Component CONTAINER_TITLE + = Component.translatable("container.eris_alchemy.alchemical_chest"); public AlchemicalChestBlock(Properties properties) { super(properties, () -> ErisAlchemyRegistry.BlockEntities.ALCHEMICAL_CHEST); @@ -26,6 +26,6 @@ public class AlchemicalChestBlock extends ChestLikeBlock