diff options
Diffstat (limited to '')
-rw-r--r-- | MCServer/Plugins/Core/onplayerbreakingblock.lua (renamed from MCServer/Plugins/Core/onblockdig.lua) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MCServer/Plugins/Core/onblockdig.lua b/MCServer/Plugins/Core/onplayerbreakingblock.lua index 65e48576c..fc7d5897d 100644 --- a/MCServer/Plugins/Core/onblockdig.lua +++ b/MCServer/Plugins/Core/onplayerbreakingblock.lua @@ -1,4 +1,4 @@ -function OnBlockDig(Player, BlockX, BlockY, BlockZ, BlockFace, Status, OldBlockType, OldBlockMeta)
+function OnPlayerBreakingBlock(Player, BlockX, BlockY, BlockZ, BlockFace, Status, OldBlockType, OldBlockMeta)
-- dont check if the direction is in the air
if (BlockFace ~= -1) then
|