mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-17 04:10:59 -05:00
Make it neater.
This commit is contained in:
parent
7a4de0b42d
commit
8c4b62b9ac
@ -93,17 +93,12 @@ export class punishments extends Database {
|
|||||||
(this.client.channels.resolve(channelId) as Discord.TextChannel).send({embeds: [embed]});
|
(this.client.channels.resolve(channelId) as Discord.TextChannel).send({embeds: [embed]});
|
||||||
};
|
};
|
||||||
getTense(type: string) { // Get past tense form of punishment type, grammar yes
|
getTense(type: string) { // Get past tense form of punishment type, grammar yes
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case 'ban':
|
case 'ban': return 'banned';
|
||||||
return 'banned';
|
case 'softban': return 'softbanned';
|
||||||
case 'softban':
|
case 'kick': return 'kicked';
|
||||||
return 'softbanned';
|
case 'mute': return 'muted';
|
||||||
case 'kick':
|
case 'warn': return 'warned';
|
||||||
return 'kicked';
|
|
||||||
case 'mute':
|
|
||||||
return 'muted';
|
|
||||||
case 'warn':
|
|
||||||
return 'warned';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
async addPunishment(type: string, options: punOpt, moderator: string, reason: string, User: Discord.User, GuildMember?: Discord.GuildMember) {
|
async addPunishment(type: string, options: punOpt, moderator: string, reason: string, User: Discord.User, GuildMember?: Discord.GuildMember) {
|
||||||
|
Loading…
Reference in New Issue
Block a user