Merge pull request #3252 from Altenius/fixpiston
Fixed piston destroying other pistons
This commit is contained in:
commit
402ca1c4dd
@ -32,14 +32,18 @@ void cBlockPistonHandler::OnDestroyed(cChunkInterface & a_ChunkInterface, cWorld
|
|||||||
{
|
{
|
||||||
Vector3i blockPos(a_BlockX, a_BlockY, a_BlockZ);
|
Vector3i blockPos(a_BlockX, a_BlockY, a_BlockZ);
|
||||||
|
|
||||||
// Get the extension of the piston
|
|
||||||
NIBBLETYPE OldMeta = a_ChunkInterface.GetBlockMeta(blockPos.x, blockPos.y, blockPos.z);
|
NIBBLETYPE OldMeta = a_ChunkInterface.GetBlockMeta(blockPos.x, blockPos.y, blockPos.z);
|
||||||
|
// If the piston is extended, destroy the extension as well
|
||||||
|
if (IsExtended(OldMeta))
|
||||||
|
{
|
||||||
|
// Get the position of the extension
|
||||||
blockPos += MetadataToOffset(OldMeta);
|
blockPos += MetadataToOffset(OldMeta);
|
||||||
|
|
||||||
if (a_ChunkInterface.GetBlock(blockPos) == E_BLOCK_PISTON_EXTENSION)
|
if (a_ChunkInterface.GetBlock(blockPos) == E_BLOCK_PISTON_EXTENSION)
|
||||||
{
|
{
|
||||||
a_ChunkInterface.SetBlock(blockPos.x, blockPos.y, blockPos.z, E_BLOCK_AIR, 0);
|
a_ChunkInterface.SetBlock(blockPos.x, blockPos.y, blockPos.z, E_BLOCK_AIR, 0);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user