summaryrefslogtreecommitdiff
path: root/pvp.lua
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2017-10-09 13:58:19 +0100
committerTenPlus1 <kinsellaja@yahoo.com>2017-10-09 13:58:19 +0100
commitc81191df2ab8b0f6f79692278ca3035779d7913b (patch)
treeb4c2b4fa011e07fd87e57283d72e85a37cba9e92 /pvp.lua
parent1c37c2b695e61c19147923aa89736f8cd654a325 (diff)
update to newer 0.4.16 functions
Diffstat (limited to 'pvp.lua')
-rw-r--r--pvp.lua9
1 files changed, 5 insertions, 4 deletions
diff --git a/pvp.lua b/pvp.lua
index 90a8d3f..ef380bc 100644
--- a/pvp.lua
+++ b/pvp.lua
@@ -2,16 +2,17 @@
local S = protector.intllib
-- get static spawn position
-local statspawn = minetest.setting_get_pos("static_spawnpoint") or {x = 0, y = 2, z = 0}
+local statspawn = minetest.string_to_pos(minetest.settings:get("static_spawnpoint"))
+ or {x = 0, y = 2, z = 0}
-- is pvp protection enabled
-protector.pvp = minetest.setting_getbool("protector_pvp")
+protector.pvp = minetest.settings:get_bool("protector_pvp")
-- is night-only pvp enabled
-protector.night_pvp = minetest.setting_getbool("protector_night_pvp")
+protector.night_pvp = minetest.settings:get_bool("protector_night_pvp")
-- disables PVP in your own protected areas
-if minetest.setting_getbool("enable_pvp") and protector.pvp then
+if minetest.settings:get_bool("enable_pvp") and protector.pvp then
if minetest.register_on_punchplayer then