summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/init.lua b/init.lua
index d47e014..6e0cf27 100644
--- a/init.lua
+++ b/init.lua
@@ -1,4 +1,5 @@
local spawn_spawnpos = minetest.setting_get_pos("static_spawnpoint")
+local execution_pos = {x=-310,y=0,z=-40}
places = {}
@@ -14,6 +15,10 @@ places.register_place = function (name, pos, command)
if not player then
return false, "Player not found"
end
+ if xban and xban.get_property(nm, "jailed") then
+ player:setpos(execution_pos)
+ return true, "Nice try! You can't escape!"
+ end
player:setpos(pos)
return true, "Teleporting to "..name.."..."
end,