From 0b5f18754ccff955562076f3ca9a2a2b129e8487 Mon Sep 17 00:00:00 2001 From: PilzAdam Date: Mon, 8 Jul 2013 13:30:55 +0200 Subject: [PATCH] Make sure that coordinates passed to /teleport are actual numbers --- builtin/chatcommands.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/builtin/chatcommands.lua b/builtin/chatcommands.lua index 6a3b29e7..7d1c2b62 100644 --- a/builtin/chatcommands.lua +++ b/builtin/chatcommands.lua @@ -272,6 +272,9 @@ minetest.register_chatcommand("teleport", { local teleportee = nil local p = {} p.x, p.y, p.z = string.match(param, "^([%d.-]+)[, ] *([%d.-]+)[, ] *([%d.-]+)$") + p.x = tonumber(p.x) + p.y = tonumber(p.y) + p.z = tonumber(p.z) teleportee = minetest.get_player_by_name(name) if teleportee and p.x and p.y and p.z then minetest.chat_send_player(name, "Teleporting to ("..p.x..", "..p.y..", "..p.z..")") @@ -302,6 +305,9 @@ minetest.register_chatcommand("teleport", { local p = {} local teleportee_name = nil teleportee_name, p.x, p.y, p.z = string.match(param, "^([^ ]+) +([%d.-]+)[, ] *([%d.-]+)[, ] *([%d.-]+)$") + p.x = tonumber(p.x) + p.y = tonumber(p.y) + p.z = tonumber(p.z) if teleportee_name then teleportee = minetest.get_player_by_name(teleportee_name) end