summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/onplayerbreakingblock.lua
diff options
context:
space:
mode:
Diffstat (limited to 'MCServer/Plugins/Core/onplayerbreakingblock.lua')
-rw-r--r--MCServer/Plugins/Core/onplayerbreakingblock.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/MCServer/Plugins/Core/onplayerbreakingblock.lua b/MCServer/Plugins/Core/onplayerbreakingblock.lua
new file mode 100644
index 000000000..fc7d5897d
--- /dev/null
+++ b/MCServer/Plugins/Core/onplayerbreakingblock.lua
@@ -0,0 +1,10 @@
+function OnPlayerBreakingBlock(Player, BlockX, BlockY, BlockZ, BlockFace, Status, OldBlockType, OldBlockMeta)
+ -- dont check if the direction is in the air
+ if (BlockFace ~= -1) then
+
+ if (Player:HasPermission("core.build") == false) then
+ return true
+ end
+ end
+ return false
+end \ No newline at end of file