Fixed crash with nil values for /orient

This commit is contained in:
LeMagnesium 2015-03-22 13:34:59 +01:00
parent 60f111e9d5
commit 421c7b8fd0
1 changed files with 4 additions and 0 deletions

View File

@ -802,6 +802,10 @@ minetest.register_chatcommand("/orient", {
worldedit.player_notify(name, count .. " nodes oriented")
end,
function(name, param)
if param == nil then
minetest.log("error","No parameters given to /orient WE's command!")
return
end
local found, _, angle = param:find("^([+-]?%d+)$")
if found == nil then
worldedit.player_notify(name, "invalid usage: " .. param)