From 5b4eee252fb64cb8a94b6eb964256d59929cf8df Mon Sep 17 00:00:00 2001 From: Coder12a <38924418+Coder12a@users.noreply.github.com> Date: Mon, 6 May 2019 12:30:44 -0500 Subject: [PATCH] Do: not change the sign of max_depth --- config.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config.lua b/config.lua index a1c4cac..4a5aee9 100644 --- a/config.lua +++ b/config.lua @@ -1,6 +1,5 @@ factions_config = {} -local flip = tonumber(minetest.settings:get("protection_max_depth")) or 512 -factions_config.protection_max_depth = -flip +factions_config.protection_max_depth = tonumber(minetest.settings:get("protection_max_depth")) or -512 factions_config.protection_max_height = tonumber(minetest.settings:get("protection_max_height")) or 10000 factions_config.power_per_parcel = tonumber(minetest.settings:get("power_per_parcel")) or 1 factions_config.power_per_death = tonumber(minetest.settings:get("power_per_death")) or 1