mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
I don't know why this was here
This commit is contained in:
parent
5d09499f61
commit
851b7a3730
1 changed files with 1 additions and 16 deletions
|
@ -34,7 +34,7 @@ import java.util.List;
|
|||
import java.util.Map;
|
||||
import java.util.concurrent.ConcurrentHashMap;
|
||||
|
||||
public class TileEntityLaserRelayFluids extends TileEntityLaserRelay implements ISharingFluidHandler{
|
||||
public class TileEntityLaserRelayFluids extends TileEntityLaserRelay{
|
||||
|
||||
public final ConcurrentHashMap<EnumFacing, TileEntity> receiversAround = new ConcurrentHashMap<EnumFacing, TileEntity>();
|
||||
private final IFluidHandler[] fluidHandlers = new IFluidHandler[6];
|
||||
|
@ -103,21 +103,6 @@ public class TileEntityLaserRelayFluids extends TileEntityLaserRelay implements
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getMaxFluidAmountToSplitShare(){
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean doesShareFluid(){
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public EnumFacing[] getFluidShareSides(){
|
||||
return new EnumFacing[0];
|
||||
}
|
||||
|
||||
@Override
|
||||
public IFluidHandler getFluidHandler(EnumFacing facing){
|
||||
return this.fluidHandlers[facing == null ? 0 : facing.ordinal()];
|
||||
|
|
Loading…
Reference in a new issue