mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-14 22:44:07 +01:00
Merge pull request #2384 from dithpri/smart-chute-fix
Fix powered smart chutes outputting items
This commit is contained in:
commit
14d15089db
@ -354,6 +354,8 @@ public class ChuteTileEntity extends SmartTileEntity implements IHaveGoggleInfor
|
|||||||
|
|
||||||
if (level == null)
|
if (level == null)
|
||||||
return false;
|
return false;
|
||||||
|
if (!this.canOutputItems())
|
||||||
|
return false;
|
||||||
if (!capBelow.isPresent())
|
if (!capBelow.isPresent())
|
||||||
capBelow = grabCapability(Direction.DOWN);
|
capBelow = grabCapability(Direction.DOWN);
|
||||||
if (capBelow.isPresent()) {
|
if (capBelow.isPresent()) {
|
||||||
@ -407,6 +409,9 @@ public class ChuteTileEntity extends SmartTileEntity implements IHaveGoggleInfor
|
|||||||
if (level == null)
|
if (level == null)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
if (!this.canOutputItems())
|
||||||
|
return false;
|
||||||
|
|
||||||
if (AbstractChuteBlock.isOpenChute(getBlockState())) {
|
if (AbstractChuteBlock.isOpenChute(getBlockState())) {
|
||||||
if (!capAbove.isPresent())
|
if (!capAbove.isPresent())
|
||||||
capAbove = grabCapability(Direction.UP);
|
capAbove = grabCapability(Direction.UP);
|
||||||
@ -477,6 +482,10 @@ public class ChuteTileEntity extends SmartTileEntity implements IHaveGoggleInfor
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected boolean canOutputItems() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
private LazyOptional<IItemHandler> grabCapability(Direction side) {
|
private LazyOptional<IItemHandler> grabCapability(Direction side) {
|
||||||
BlockPos pos = this.worldPosition.relative(side);
|
BlockPos pos = this.worldPosition.relative(side);
|
||||||
if (level == null)
|
if (level == null)
|
||||||
|
@ -42,6 +42,12 @@ public class SmartChuteTileEntity extends ChuteTileEntity {
|
|||||||
return blockState.hasProperty(SmartChuteBlock.POWERED) && !blockState.getValue(SmartChuteBlock.POWERED);
|
return blockState.hasProperty(SmartChuteBlock.POWERED) && !blockState.getValue(SmartChuteBlock.POWERED);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected boolean canOutputItems() {
|
||||||
|
BlockState blockState = getBlockState();
|
||||||
|
return blockState.hasProperty(SmartChuteBlock.POWERED) && !blockState.getValue(SmartChuteBlock.POWERED);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void addBehaviours(List<TileEntityBehaviour> behaviours) {
|
public void addBehaviours(List<TileEntityBehaviour> behaviours) {
|
||||||
behaviours.add(filtering =
|
behaviours.add(filtering =
|
||||||
|
Loading…
Reference in New Issue
Block a user