Fix plural when multiple modules are added
This commit is contained in:
parent
af4c08b220
commit
423a4095bf
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ module.exports = function(beforeSize, client){
|
|||
if (difference == 1)
|
||||
sendText = `${difference} module was added, and a total of ${client.commands.size} were reloaded.`
|
||||
else
|
||||
sendText = `${difference} module were added, and a total of ${client.commands.size} were reloaded.`
|
||||
sendText = `${difference} modules were added, and a total of ${client.commands.size} were reloaded.`
|
||||
} else if (beforeSize === client.commands.size) {
|
||||
sendText = `${client.commands.size} modules were reloaded.`
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue