diff --git a/chat.lua b/chat.lua index 5fac2f2..02eb0d9 100644 --- a/chat.lua +++ b/chat.lua @@ -233,3 +233,11 @@ minetest.register_chatcommand("town", { privs = {towny = true}, func = town_command }) + +minetest.register_chatcommand("plot", { + description = "Manage your town plot", + privs = {towny = true}, + func = function (name, param) + return town_command(name, "plot " .. param) + end +})