summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSin <[email protected]>2020-05-07 19:21:47 -0700
committerGitHub <[email protected]>2020-05-07 19:21:47 -0700
commitf23f095f7607d59cde280c684014a8928f5d72d0 (patch)
tree2e071052a5e48bc5a3062d9f532981a3cda6c100 /src
parentchange bot path (diff)
downloaddep-core-f23f095f7607d59cde280c684014a8928f5d72d0.tar.xz
dep-core-f23f095f7607d59cde280c684014a8928f5d72d0.zip
remove duplicate alias
Diffstat (limited to 'src')
-rw-r--r--src/commands/bot/memoryusage.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/commands/bot/memoryusage.ts b/src/commands/bot/memoryusage.ts
index c8fd2cc..e5ed33b 100644
--- a/src/commands/bot/memoryusage.ts
+++ b/src/commands/bot/memoryusage.ts
@@ -10,8 +10,7 @@ module.exports = class MemoryUsageBot extends Command {
'mem-usage',
'memory-usage',
'mem',
- 'memory',
- 'memoryusage'
+ 'memory'
],
group: 'bot',
memberName: 'memoryusage',
@@ -29,4 +28,4 @@ module.exports = class MemoryUsageBot extends Command {
const used = process.memoryUsage().heapUsed / 1024 / 1024;
msg.reply(`The current, approximate memory usage is currently **${Math.round(used * 100) / 100}** MBs. ${emoji.random()}`)
}
-}; \ No newline at end of file
+};