From ed7b680d3cb100b6e633573b1422855eb08cd07a Mon Sep 17 00:00:00 2001 From: faketruth Date: Mon, 19 Mar 2012 20:30:24 +0000 Subject: Added core.build permission to Core. Without this permission players are unable to build git-svn-id: http://mc-server.googlecode.com/svn/trunk@425 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- Plugins/Core/onblockplace.lua | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Plugins/Core/onblockplace.lua') diff --git a/Plugins/Core/onblockplace.lua b/Plugins/Core/onblockplace.lua index 5717d76ca..12b536e7a 100644 --- a/Plugins/Core/onblockplace.lua +++ b/Plugins/Core/onblockplace.lua @@ -3,6 +3,10 @@ function OnBlockPlace( Block, Player ) -- dont check if the direction is in the air if Block.m_Direction ~= -1 then + if( Player:HasPermission("core.build") == false ) then + return true + end + local X = Block.m_PosX local Y = Block.m_PosY local Z = Block.m_PosZ -- cgit v1.2.3