Fixed Fluid Non-Solid Block Duplication
This commit is contained in:
parent
571e441502
commit
9e732ee935
1 changed files with 15 additions and 3 deletions
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
package net.minecraftforge.fluids;
|
package net.minecraftforge.fluids;
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
|
@ -130,7 +129,13 @@ public abstract class BlockFluidBase extends Block implements IFluidBlock
|
||||||
return false;
|
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;
|
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);
|
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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue