diff --git a/src/main/java/techreborn/blockentity/machine/tier1/AutoCraftingTableBlockEntity.java b/src/main/java/techreborn/blockentity/machine/tier1/AutoCraftingTableBlockEntity.java index 0ca1a7fbf..4a6677f43 100644 --- a/src/main/java/techreborn/blockentity/machine/tier1/AutoCraftingTableBlockEntity.java +++ b/src/main/java/techreborn/blockentity/machine/tier1/AutoCraftingTableBlockEntity.java @@ -37,7 +37,6 @@ import net.minecraft.screen.ScreenHandler; import net.minecraft.sound.SoundCategory; import net.minecraft.util.collection.DefaultedList; import net.minecraft.util.math.BlockPos; -import net.minecraft.util.math.Direction; import net.minecraft.world.World; import org.apache.commons.lang3.tuple.Pair; import org.jetbrains.annotations.Nullable; @@ -351,7 +350,7 @@ public class AutoCraftingTableBlockEntity extends PowerAcceptorBlockEntity return Optional.of(getCraftingInventory()); } - // TilePowerAcceptor + // PowerAcceptorBlockEntity @Override public void tick(World world, BlockPos pos, BlockState state, MachineBaseBlockEntity blockEntity) { super.tick(world, pos, state, blockEntity); @@ -432,12 +431,6 @@ public class AutoCraftingTableBlockEntity extends PowerAcceptorBlockEntity return true; } - // This machine doesnt have a facing - @Override - public Direction getFacingEnum() { - return Direction.NORTH; - } - // IToolDrop @Override public ItemStack getToolDrop(PlayerEntity playerIn) { diff --git a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/auto_crafting_table.json b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/auto_crafting_table.json index 9a1704bac..f48dd4d96 100644 --- a/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/auto_crafting_table.json +++ b/src/main/resources/assets/techreborn/models/block/machines/tier1_machines/auto_crafting_table.json @@ -1,8 +1,9 @@ { - "parent": "minecraft:block/cube_bottom_top", + "parent": "minecraft:block/orientable", "textures": { "top": "techreborn:block/machines/tier1_machines/auto_crafting_table_top", + "front": "techreborn:block/machines/tier1_machines/auto_crafting_table_side", "bottom": "techreborn:block/machines/tier1_machines/machine_bottom", - "side": "techreborn:block/machines/tier1_machines/auto_crafting_table_side" + "side": "techreborn:block/machines/tier1_machines/machine_side" } }