1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 12:30:58 -04:00

Make it neater.

This commit is contained in:
toast-ts 2023-02-12 20:11:42 +11:00
parent 7a4de0b42d
commit 8c4b62b9ac

View File

@ -94,16 +94,11 @@ export class punishments extends Database {
}; };
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) {