MPB fin fix, pumpjack connector fix

This commit is contained in:
HbmMods 2018-03-03 20:16:20 +01:00
parent 9ba3a3c63b
commit 0d9490b860
3 changed files with 5 additions and 4 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 309 B

View File

@ -28,6 +28,7 @@ public class RenderBombMulti extends TileEntitySpecialRenderer {
GL11.glPushMatrix();
GL11.glTranslated(x + 0.5D, y, z + 0.5D);
GL11.glEnable(GL11.GL_LIGHTING);
GL11.glEnable(GL11.GL_CULL_FACE);
switch(tileEntity.getBlockMetadata())
{
case 5:

View File

@ -480,8 +480,8 @@ public class TileEntityMachinePumpjack extends TileEntity implements ISidedInven
if(i == 3) {
fillFluid(this.xCoord + 2, this.yCoord, this.zCoord - 2, getTact(), type);
fillFluid(this.xCoord - 2, this.yCoord, this.zCoord - 2, getTact(), type);
fillFluid(this.xCoord + 2, this.yCoord, this.zCoord - 2, getTact(), type);
fillFluid(this.xCoord - 2, this.yCoord, this.zCoord - 2, getTact(), type);
fillFluid(this.xCoord + 2, this.yCoord, this.zCoord - 3, getTact(), type);
fillFluid(this.xCoord - 2, this.yCoord, this.zCoord - 3, getTact(), type);
}
if(i == 4) {
fillFluid(this.xCoord + 2, this.yCoord, this.zCoord + 2, getTact(), type);
@ -492,8 +492,8 @@ public class TileEntityMachinePumpjack extends TileEntity implements ISidedInven
if(i == 2) {
fillFluid(this.xCoord + 2, this.yCoord, this.zCoord + 2, getTact(), type);
fillFluid(this.xCoord - 2, this.yCoord, this.zCoord + 2, getTact(), type);
fillFluid(this.xCoord + 2, this.yCoord, this.zCoord + 2, getTact(), type);
fillFluid(this.xCoord - 2, this.yCoord, this.zCoord + 2, getTact(), type);
fillFluid(this.xCoord + 2, this.yCoord, this.zCoord + 3, getTact(), type);
fillFluid(this.xCoord - 2, this.yCoord, this.zCoord + 3, getTact(), type);
}
}