Part two of proper fix for issue #563
Implement ILiquidTank getTank properly
This commit is contained in:
parent
96f1aed0a2
commit
71c84fc6b1
1 changed files with 45 additions and 3 deletions
|
@ -449,9 +449,51 @@ public class TileRefinery extends TileMachine implements ITankContainer, IPowerR
|
|||
|
||||
@Override
|
||||
public ILiquidTank getTank(ForgeDirection direction, LiquidStack type) {
|
||||
// TODO Auto-generated method stub
|
||||
ForgeDirection dir = ForgeDirection.values()[worldObj.getBlockMetadata(xCoord, yCoord, zCoord)];
|
||||
|
||||
switch (direction) {
|
||||
case NORTH:
|
||||
switch (dir) {
|
||||
case WEST:
|
||||
return ingredient2;
|
||||
case EAST:
|
||||
return ingredient1;
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
case SOUTH:
|
||||
switch (dir) {
|
||||
case WEST:
|
||||
return ingredient1;
|
||||
case EAST:
|
||||
return ingredient2;
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
case EAST:
|
||||
switch (dir) {
|
||||
case NORTH:
|
||||
return ingredient2;
|
||||
case SOUTH:
|
||||
return ingredient1;
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
case WEST:
|
||||
switch (dir) {
|
||||
case NORTH:
|
||||
return ingredient1;
|
||||
case SOUTH:
|
||||
return ingredient2;
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
case DOWN:
|
||||
return result;
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Network
|
||||
|
||||
|
|
Loading…
Reference in a new issue