diff options
Diffstat (limited to 'Plugins')
-rw-r--r-- | Plugins/Core/onblockplace.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Plugins/Core/onblockplace.lua b/Plugins/Core/onblockplace.lua index 64ab54920..5717d76ca 100644 --- a/Plugins/Core/onblockplace.lua +++ b/Plugins/Core/onblockplace.lua @@ -7,7 +7,7 @@ function OnBlockPlace( Block, Player ) local Y = Block.m_PosY
local Z = Block.m_PosZ
X, Y, Z = AddDirection( X, Y, Z, Block.m_Direction )
- if( Y >= 128 or Y < 0 ) then
+ if( Y >= 256 or Y < 0 ) then
return true
end
|