summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/sTick/onblockplace.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--MCServer/Plugins/sTick/onblockplace.lua11
1 files changed, 6 insertions, 5 deletions
diff --git a/MCServer/Plugins/sTick/onblockplace.lua b/MCServer/Plugins/sTick/onblockplace.lua
index 0216b580e..6bc2ce46a 100644
--- a/MCServer/Plugins/sTick/onblockplace.lua
+++ b/MCServer/Plugins/sTick/onblockplace.lua
@@ -1,17 +1,18 @@
-function OnBlockPlace( Block, Player )
+function OnBlockPlace(Player, BlockX, BlockY, BlockZ, BlockFace, HeldItem)
-- dont check if the direction is in the air
- if Block.m_Direction == -1 then
+ if BlockFace == BLOCK_FACE_NONE then
return false
end
- if (Block.m_ItemType ~= 280) then -- not a Stick of Ticking
+ if (HeldItem.m_ItemType ~= 280) then
+ -- not a Stick of Ticking
return false
end
- LOG("Setting next block tick to {" .. Block.m_PosX .. ", " .. Block.m_PosY .. ", " .. Block.m_PosZ .. "}")
+ LOG("Setting next block tick to {" .. BlockX .. ", " .. BlockY .. ", " .. BlockZ .. "}")
- Player:GetWorld():SetNextBlockTick(Block.m_PosX, Block.m_PosY, Block.m_PosZ);
+ Player:GetWorld():SetNextBlockTick(BlockX, BlockY, BlockZ);
return true