mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-06-28 14:16:06 +02:00
Fixed crash with nil values for /orient
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user