mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-17 00:10:58 -05:00
Add "see you later" to evening trigger
This commit is contained in:
parent
fce639de1c
commit
ac420faa74
@ -27,6 +27,8 @@ export default class Response {
|
||||
}
|
||||
protected static async respond(message:Discord.Message, responseKeyword:string) {
|
||||
if (message.type === Discord.MessageType.Reply) return;
|
||||
// Special case for "see you later"
|
||||
if (responseKeyword === 'evening' && /^see you later\b/i.test(message.content)) return message.reply(`${this.outgoingArrays(message)[responseKeyword][Math.floor(Math.random()*this.outgoingArrays(message)[responseKeyword].length)]}`).catch(()=>null);
|
||||
if (new RegExp(`^(${this.incomingArrays[responseKeyword].prefix.join('|')})?\\s?${responseKeyword} (${this.incomingArrays[responseKeyword].suffix.join('|')})\\b`, 'i').test(message.content)) return message.reply(`${this.outgoingArrays(message)[responseKeyword][Math.floor(Math.random()*this.outgoingArrays(message)[responseKeyword].length)]}`).catch(()=>null)
|
||||
}
|
||||
protected static outgoingArrays(message:Discord.Message) {
|
||||
|
Loading…
Reference in New Issue
Block a user