diff --git a/commands/response/roulette.js b/commands/response/roulette.js index dd7c68fd..32c1ae88 100644 --- a/commands/response/roulette.js +++ b/commands/response/roulette.js @@ -1,6 +1,6 @@ const commando = require('discord.js-commando'); -class FishyCommand extends commando.Command { +class RouletteCommand extends commando.Command { constructor(Client){ super(Client, { name: 'roulette', @@ -17,8 +17,8 @@ class FishyCommand extends commando.Command { if(!message.channel.permissionsFor(this.client.user).hasPermission('READ_MESSAGES')) return; } console.log("[Command] " + message.content); - message.channel.sendMessage("I choose " + message.guild.members.random() + "!"); + message.channel.sendMessage("I choose " + message.guild.members.random().displayName + "!"); } } -module.exports = FishyCommand; \ No newline at end of file +module.exports = RouletteCommand; \ No newline at end of file