Autocrafting table got proper orientation. Closes #2419
This commit is contained in:
parent
729b645cd7
commit
15b354fd65
2 changed files with 4 additions and 10 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue