mirror of
https://github.com/Uberi/Minetest-WorldEdit.git
synced 2024-11-15 23:20:16 +01:00
restore accidentally removed check
This commit is contained in:
parent
7166c89f02
commit
337c1e6d27
|
@ -456,6 +456,10 @@ minetest.register_chatcommand("/replaceinverse", {
|
|||
})
|
||||
|
||||
local check_sphere = function(name, param)
|
||||
if worldedit.pos1[name] == nil then
|
||||
worldedit.player_notify(name, "no position 1 selected")
|
||||
return nil
|
||||
end
|
||||
local found, _, radius, nodename = param:find("^(%d+)%s+(.+)$")
|
||||
if found == nil then
|
||||
worldedit.player_notify(name, "invalid usage: " .. param)
|
||||
|
|
Loading…
Reference in New Issue
Block a user