chat_modes_2025/shout_mode.lua

14 lines
311 B
Lua
Raw Normal View History

2017-02-28 20:03:44 +00:00
-- The default-default mode - just get all connected players
2017-03-03 17:55:12 +00:00
chat_modes.register_mode("chat_modes:shout", {
2017-03-01 20:34:28 +00:00
help = "Send all messages to all non-deaf players",
2017-02-28 21:52:31 +00:00
2017-02-28 20:03:44 +00:00
getPlayers = function()
2017-02-28 21:55:38 +00:00
if minetest.get_modpath("irc") and irc then
irc:say(message)
end
2017-02-28 20:03:44 +00:00
return minetest.get_connected_players()
end
})