mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-01 13:53:03 +00:00
20 lines
1.3 KiB
Lua
20 lines
1.3 KiB
Lua
-- ██████ █████ ███████ ███████ ███ ██ █████ ███ ███ ███████
|
|
-- ██ ██ ██ ██ ██ ██ ████ ██ ██ ██ ████ ████ ██
|
|
-- ██████ ███████ ███████ █████ ██ ██ ██ ███████ ██ ████ ██ █████
|
|
-- ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
|
-- ██████ ██ ██ ███████ ███████ ██ ████ ██ ██ ██ ██ ███████
|
|
worldeditadditions_core.register_command("basename", {
|
|
params = "<nodealias>",
|
|
description = "Returns the base name of nodes that use a given alias.",
|
|
privs = {worldedit = true},
|
|
parse = function(params_text)
|
|
if params_text == "" or not params_text then
|
|
return false, "Node not specified."
|
|
end
|
|
return true, params_text
|
|
end,
|
|
func = function(name, params_text)
|
|
if name == nil then return end
|
|
return true, worldedit.normalize_nodename(params_text) or ('Error 404: "'..params_text..'" not found!')
|
|
end
|
|
})
|