Fixed Fluid Non-Solid Block Duplication

This commit is contained in:
tommy1019 2013-08-08 18:38:46 -05:00
parent 571e441502
commit 9e732ee935
1 changed files with 15 additions and 3 deletions

View File

@ -1,4 +1,3 @@
package net.minecraftforge.fluids;
import java.util.HashMap;
@ -130,7 +129,13 @@ public abstract class BlockFluidBase extends Block implements IFluidBlock
return false;
}
if (this.density > getDensity(world, x, y, z))
int density = getDensity(world, x, y, z);
if (density == Integer.MAX_VALUE)
{
return true;
}
if (this.density > density)
{
return true;
}
@ -173,7 +178,14 @@ public abstract class BlockFluidBase extends Block implements IFluidBlock
}
Block.blocksList[bId].dropBlockAsItem(world, x, y, z, world.getBlockMetadata(x, y, z), 0);
if (this.density > getDensity(world, x, y, z))
int density = getDensity(world, x, y, z);
if (density == Integer.MAX_VALUE)
{
Block.blocksList[bId].dropBlockAsItem(world, x, y, z, world.getBlockMetadata(x, y, z), 0);
return true;
}
if (this.density > density)
{
return true;
}