diff options
| author | 8cy <[email protected]> | 2020-04-29 17:37:31 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-04-29 17:37:31 -0700 |
| commit | 30f2e6293defe4fa4090a009c9a9032c695630e3 (patch) | |
| tree | 96406f0483073b209d72944c3c099858b51004c5 /src/commands/utility | |
| parent | add contact cmds, qol updates/ formatting, v9.1.0 (diff) | |
| download | dep-core-30f2e6293defe4fa4090a009c9a9032c695630e3.tar.xz dep-core-30f2e6293defe4fa4090a009c9a9032c695630e3.zip | |
The Memeification, v9.2.0
- fix goodbye
- add more models
- formatting
- uncomment error loggers
Diffstat (limited to 'src/commands/utility')
| -rw-r--r-- | src/commands/utility/csgoserverstatus.ts | 2 | ||||
| -rw-r--r-- | src/commands/utility/gmodserverstatus.ts | 2 | ||||
| -rw-r--r-- | src/commands/utility/rustserverstatus.ts | 2 | ||||
| -rw-r--r-- | src/commands/utility/starboundserverstatus.ts | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/commands/utility/csgoserverstatus.ts b/src/commands/utility/csgoserverstatus.ts index 39b5c81..eba0aad 100644 --- a/src/commands/utility/csgoserverstatus.ts +++ b/src/commands/utility/csgoserverstatus.ts @@ -67,7 +67,7 @@ module.exports = class CSGOServerStatusUtility extends Command { .catch(err => { if (err === 'UDP Watchdog Timeout') return msg.reply('Server timed out, it\'s probably offline. ' + emoji.random()) - //console.error(err) + console.error(err) return msg.reply('Woops, an unknown error has occured. ' + emoji.random()) }) } finally { diff --git a/src/commands/utility/gmodserverstatus.ts b/src/commands/utility/gmodserverstatus.ts index f7d3b35..cf59d4b 100644 --- a/src/commands/utility/gmodserverstatus.ts +++ b/src/commands/utility/gmodserverstatus.ts @@ -66,7 +66,7 @@ module.exports = class GModServerStatusUtility extends Command { .catch(err => { if (err === 'UDP Watchdog Timeout') return msg.reply('Server timed out, it\'s probably offline. ' + emoji.random()) - //console.error(err) + console.error(err) return msg.reply('Woops, an unknown error has occured. ' + emoji.random()) }) } finally { diff --git a/src/commands/utility/rustserverstatus.ts b/src/commands/utility/rustserverstatus.ts index bce83cb..f7f58bc 100644 --- a/src/commands/utility/rustserverstatus.ts +++ b/src/commands/utility/rustserverstatus.ts @@ -66,7 +66,7 @@ module.exports = class RustServerStatusUtility extends Command { .catch(err => { if (err === 'UDP Watchdog Timeout') return msg.reply('Server timed out, it\'s probably offline. ' + emoji.random()) - //console.error(err) + console.error(err) return msg.reply('Woops, an unknown error has occured. ' + emoji.random()) }) } finally { diff --git a/src/commands/utility/starboundserverstatus.ts b/src/commands/utility/starboundserverstatus.ts index 963f226..eaddfc8 100644 --- a/src/commands/utility/starboundserverstatus.ts +++ b/src/commands/utility/starboundserverstatus.ts @@ -85,7 +85,7 @@ module.exports = class StarboundServerStatusUtility extends Command { .catch(err => { if (err === 'UDP Watchdog Timeout') return msg.reply('Server timed out, it\'s probably offline. ' + emoji.random()) - //console.error(err) + console.error(err) return msg.reply('Woops, an unknown error has occured. ' + emoji.random()) }) } finally { |