diff options
Diffstat (limited to 'src/Items/ItemSlab.h')
-rw-r--r-- | src/Items/ItemSlab.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Items/ItemSlab.h b/src/Items/ItemSlab.h index 88dbef1e4..e0a405fe0 100644 --- a/src/Items/ItemSlab.h +++ b/src/Items/ItemSlab.h @@ -30,7 +30,7 @@ private: return false; } - a_Player.SendBlocksAround(a_PlacePosition.x, a_PlacePosition.y, a_PlacePosition.z, 2); // (see below) + a_Player.SendBlocksAround(a_PlacePosition, 2); // (see below) return true; } @@ -44,7 +44,7 @@ private: direction of the clicked block face of a block ignoring build collision, rather than replacing said block. Resend blocks to the client to fix the bug. Ref.: https://forum.cuberite.org/thread-434-post-17388.html#pid17388 */ - a_Player.SendBlocksAround(a_PlacePosition.x, a_PlacePosition.y, a_PlacePosition.z, 2); + a_Player.SendBlocksAround(a_PlacePosition, 2); return true; } |