This repository has been archived on 2024-02-14. You can view files and clone it, but cannot push or open issues or pull requests.
chat_formspec/chatcommands.lua
2024-01-03 16:16:13 +01:00

17 lines
554 B
Lua

minetest.register_chatcommand("chat_formspec", {
params = "",
description = "send a player who refuses communication attemps via public chat a formspec to chat",
privs = {},
func = function(name, _)
chat_formspec.show_select_predefined(name)
end
})
minetest.register_chatcommand("chat_formspec_custom", {
params = "",
description = "send a player who refuses communication attemps via public chat a formspec to chat",
privs = {},
func = function(name, _)
chat_formspec.show_create_new(name)
end
})