fix example config

This commit is contained in:
Isaac 2021-05-22 00:10:34 +01:00
parent a30df81dff
commit f48bc00012
No known key found for this signature in database
GPG Key ID: F6812DBC6719B4E3

View File

@ -25,17 +25,18 @@ module.exports = {
command_prefix: prefix, command_prefix: prefix,
log_messages: true, // transcripts/archives will be empty if false log_messages: true, // transcripts/archives will be empty if false
name_format: 'ticket-{number}', name_format: 'ticket-{number}',
opening_message: 'Hello {name}, thank you for creating a ticket. A member of staff will soon be available to assist you.\n\n__All messages in this channel are stored for future reference.__', opening_message: 'Hello {name}, thank you for creating a ticket. A member of staff will soon be available to assist you.\n\n__All messages in this channel are stored for future reference.__'
}, },
locale: 'en-GB', // used for globals (such as commands) and the default guild locale locale: 'en-GB', // used for globals (such as commands) and the default guild locale
logs: { logs: {
enabled: true, enabled: true,
keep_for: 30, keep_for: 30,
split: true, split: true
}, },
max_listeners: 10, max_listeners: 10,
plugins: [], plugins: [],
presence: { presence: {
duration: 60,
presences: [ presences: [
{ {
activity: `${prefix}new`, activity: `${prefix}new`,
@ -48,17 +49,18 @@ module.exports = {
{ {
activity: 'tickets', activity: 'tickets',
type: 'WATCHING' type: 'WATCHING'
}, }
/* { // an example /*
activity: 'Minecraft', * { // an example
type: 'STREAMING', * activity: 'Minecraft',
status: 'dnd', * type: 'STREAMING',
url: 'https://www.twitch.tv/twitch' * status: 'dnd',
}, */ * url: 'https://www.twitch.tv/twitch'
* },
*/
], ],
randomise: true, randomise: true
duration: 60
}, },
super_secret_setting: true, super_secret_setting: true,
update_notice: true, update_notice: true
}; };