mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-10 12:33:57 +01:00
Bug Fixes
- Fixed basin not triggering a recipe check when output fluids are emptied - Fluid behaviour safety on render thread - Wrenchable Depots
This commit is contained in:
parent
f45c0ca182
commit
2a57de3205
@ -58,6 +58,9 @@ public abstract class FluidTransportBehaviour extends TileEntityBehaviour {
|
||||
World world = getWorld();
|
||||
BlockPos pos = getPos();
|
||||
boolean onClient = world.isRemote;
|
||||
|
||||
if (interfaces == null)
|
||||
return;
|
||||
Collection<PipeConnection> connections = interfaces.values();
|
||||
|
||||
// Do not provide a lone pipe connection with its own flow input
|
||||
|
@ -118,7 +118,9 @@ public class BasinTileEntity extends SmartTileEntity {
|
||||
|
||||
inputTank = new SmartFluidTankBehaviour(SmartFluidTankBehaviour.INPUT, this, 2, 1000, true)
|
||||
.whenFluidUpdates(() -> contentsChanged = true);
|
||||
outputTank = new SmartFluidTankBehaviour(SmartFluidTankBehaviour.OUTPUT, this, 2, 1000, true).forbidInsertion();
|
||||
outputTank = new SmartFluidTankBehaviour(SmartFluidTankBehaviour.OUTPUT, this, 2, 1000, true)
|
||||
.whenFluidUpdates(() -> contentsChanged = true)
|
||||
.forbidInsertion();
|
||||
behaviours.add(inputTank);
|
||||
behaviours.add(outputTank);
|
||||
|
||||
@ -250,7 +252,8 @@ public class BasinTileEntity extends SmartTileEntity {
|
||||
newFacing = test;
|
||||
}
|
||||
|
||||
if (preferredSpoutput != null && BasinBlock.canOutputTo(world, pos, preferredSpoutput) && preferredSpoutput != Direction.UP)
|
||||
if (preferredSpoutput != null && BasinBlock.canOutputTo(world, pos, preferredSpoutput)
|
||||
&& preferredSpoutput != Direction.UP)
|
||||
newFacing = preferredSpoutput;
|
||||
|
||||
if (newFacing != currentFacing)
|
||||
|
@ -6,6 +6,7 @@ import com.simibubi.create.AllBlocks;
|
||||
import com.simibubi.create.AllShapes;
|
||||
import com.simibubi.create.AllTileEntities;
|
||||
import com.simibubi.create.content.contraptions.relays.belt.transport.TransportedItemStack;
|
||||
import com.simibubi.create.content.contraptions.wrench.IWrenchable;
|
||||
import com.simibubi.create.foundation.block.ITE;
|
||||
import com.simibubi.create.foundation.item.ItemHelper;
|
||||
import com.simibubi.create.foundation.tileEntity.TileEntityBehaviour;
|
||||
@ -34,7 +35,7 @@ import net.minecraftforge.items.ItemStackHandler;
|
||||
|
||||
@ParametersAreNonnullByDefault
|
||||
@MethodsReturnNonnullByDefault
|
||||
public class DepotBlock extends Block implements ITE<DepotTileEntity> {
|
||||
public class DepotBlock extends Block implements ITE<DepotTileEntity>, IWrenchable {
|
||||
|
||||
public DepotBlock(Properties p_i48440_1_) {
|
||||
super(p_i48440_1_);
|
||||
|
Loading…
Reference in New Issue
Block a user