1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-14 10:13:13 +02:00
RedMew/resources/discord.lua

19 lines
688 B
Lua
Raw Normal View History

2020-12-23 18:49:42 +02:00
--- Resources for use in interacting with discord.
return {
--- The names of the discord channels that can be referenced by name.
-- See features.server.to_discord_named
channel_names = {
bot_playground = 'bot-playground',
map_promotion = 'map-promotion',
moderation_log = 'moderation-log',
helpdesk = 'helpdesk'
},
--- The strings that mention the discord role.
-- Has to be used with features.server.to_discord_raw variants else the mention is sanitized server side.
role_mentions = {
test = '<@&593534612051984431>',
crash_site = '<@&762441731194748958>',
moderator = '<@&454192594633883658>'
}
}