Merge pull request #717 from tommy1019/patch-3

Fixed Fluid Non-Solid Block Duplication
This commit is contained in:
LexManos 2013-08-10 19:47:21 -07:00
commit d304f40295
2 changed files with 23 additions and 7 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;
}
@ -171,9 +176,15 @@ public abstract class BlockFluidBase extends Block implements IFluidBlock
{
return false;
}
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;
}

View File

@ -1,4 +1,3 @@
package net.minecraftforge.fluids;
import java.util.Random;
@ -304,9 +303,15 @@ public class BlockFluidClassic extends BlockFluidBase
return false;
}
if (this.density > getDensity(world, x, y, z))
int density = getDensity(world, x, y, z);
if (density == Integer.MAX_VALUE)
{
return true;
return true;
}
if (this.density > density)
{
return true;
}
else
{