diff options
Diffstat (limited to 'src/commands/minecraft')
| -rw-r--r-- | src/commands/minecraft/getbody.ts | 2 | ||||
| -rw-r--r-- | src/commands/minecraft/getminime.ts | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/commands/minecraft/getbody.ts b/src/commands/minecraft/getbody.ts index 3fb6eec..d33192b 100644 --- a/src/commands/minecraft/getbody.ts +++ b/src/commands/minecraft/getbody.ts @@ -39,7 +39,7 @@ module.exports = class GetBodyMinecraft extends Command { .setAuthor(uUsername, `https://minotar.net/body/${encodeURIComponent(uUsername)}`) .setImage(`https://minotar.net/body/${encodeURIComponent(uUsername)}`) - //console.debug(`URL for ${uUsername}:`, emb.image?.url) + console.debug(`URL for ${uUsername}:`, emb.image?.url) msg.reply(emb) } };
\ No newline at end of file diff --git a/src/commands/minecraft/getminime.ts b/src/commands/minecraft/getminime.ts index c948d38..13352f0 100644 --- a/src/commands/minecraft/getminime.ts +++ b/src/commands/minecraft/getminime.ts @@ -40,7 +40,7 @@ module.exports = class GetMiniMeMinecraft extends Command { }); } async run(msg: CommandoMessage, { uUsername, uTrans }) { - //console.debug('Transparency value:', uTrans) + console.debug('Transparency value:', uTrans) let emb = new MessageEmbed() .setColor(0xFFCC4D) @@ -53,7 +53,7 @@ module.exports = class GetMiniMeMinecraft extends Command { emb.setImage(`http://avatar.yourminecraftservers.com/avatar/rad/steve/tall/128/${encodeURIComponent(username)}.png`) } - //console.debug(`Image URL for ${uUsername}: ${emb.image?.url}`) + console.debug(`Image URL for ${uUsername}: ${emb.image?.url}`) msg.reply(emb) } };
\ No newline at end of file |