1
0
Fork 0

Fixed placing liquids over liquids

* Fixes #1182
This commit is contained in:
Tiger Wang 2014-07-14 21:55:46 +01:00
parent a4d9ccded4
commit f0187cc8f9
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ public:
if (a_BlockType != E_BLOCK_AIR)
{
m_ReplacedBlock = a_BlockType;
if (!cFluidSimulator::CanWashAway(a_BlockType))
if (!cFluidSimulator::CanWashAway(a_BlockType) && !IsBlockLiquid(a_BlockType))
{
AddFaceDirection(a_BlockX, a_BlockY, a_BlockZ, (eBlockFace)a_EntryFace); // Was an unwashawayable block, can't overwrite it!
}