add radius limiter of 22 so node volume of 4096000 isnt exceeded
This commit is contained in:
@@ -6,6 +6,9 @@ local S = protector.intllib
|
||||
-- get protection radius
|
||||
local r = tonumber(minetest.settings:get("protector_radius")) or 5
|
||||
|
||||
-- radius limiter (minetest cannot handle node volume of more than 4096000)
|
||||
if r > 22 then r = 22 end
|
||||
|
||||
minetest.register_craftitem("protector:tool", {
|
||||
description = S("Protector Placer Tool (stand near protector, face direction and use)"),
|
||||
inventory_image = "protector_display.png^protector_logo.png",
|
||||
|
||||
Reference in New Issue
Block a user