mirror of
https://github.com/minetest-mods/areas.git
synced 2025-06-30 07:00:29 +02:00
Fix rename_area and buildable_to nodes on the edges of areas
This commit is contained in:
@ -144,14 +144,14 @@ minetest.register_chatcommand("rename_area", {
|
||||
privs = {},
|
||||
func = function(name, param)
|
||||
local found, _, id, newName = param:find("^(%d+)%s(.+)$")
|
||||
|
||||
if not found then
|
||||
minetest.chat_send_player(name,
|
||||
"Invalid usage, see /help rename_area")
|
||||
return
|
||||
end
|
||||
|
||||
index = areas:getIndexById(tonumber(id))
|
||||
id = tonumber(id)
|
||||
index = areas:getIndexById(id)
|
||||
|
||||
if not index then
|
||||
minetest.chat_send_player(name, "That area doesn't exist.")
|
||||
@ -165,6 +165,7 @@ minetest.register_chatcommand("rename_area", {
|
||||
|
||||
areas.areas[index].name = newName
|
||||
areas:save()
|
||||
minetest.chat_send_player(name, "Area renamed.")
|
||||
end})
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user