diff options
| author | Sin <[email protected]> | 2020-05-07 19:21:47 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-05-07 19:21:47 -0700 |
| commit | f23f095f7607d59cde280c684014a8928f5d72d0 (patch) | |
| tree | 2e071052a5e48bc5a3062d9f532981a3cda6c100 /src | |
| parent | change bot path (diff) | |
| download | dep-core-f23f095f7607d59cde280c684014a8928f5d72d0.tar.xz dep-core-f23f095f7607d59cde280c684014a8928f5d72d0.zip | |
remove duplicate alias
Diffstat (limited to 'src')
| -rw-r--r-- | src/commands/bot/memoryusage.ts | 5 |
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 +}; |