17 lines
554 B
Lua
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
|
|
}) |