From 3b18b66a1e14f142a1b5b5d3c21ae50e486afaa0 Mon Sep 17 00:00:00 2001 From: TheEdgeNK Date: Wed, 11 Jul 2018 11:02:17 -0400 Subject: change currency name and command removal --- commands/Fun/jobs.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'commands/Fun/jobs.js') diff --git a/commands/Fun/jobs.js b/commands/Fun/jobs.js index 3d42fdf..6109ddb 100644 --- a/commands/Fun/jobs.js +++ b/commands/Fun/jobs.js @@ -28,12 +28,12 @@ exports.run = (bot, msg) => { if (bot.dbl.hasVoted(msg.author.id)) { var creditsEarned = Math.floor(Math.random() * 650); bot.plugins.economy.add(msg.author.id, creditsEarned); - msg.channel.send('You ' + jobs[Math.floor(Math.random() * jobs.length)] + '\n\nYou earned ' + creditsEarned.toString() + ' credits.'); + msg.channel.send('You ' + jobs[Math.floor(Math.random() * jobs.length)] + '\n\nYou earned ' + creditsEarned.toString() + ' atoms.'); } else { var creditsEarned = Math.floor(Math.random() * 250); bot.plugins.economy.add(msg.author.id, creditsEarned); - msg.channel.send('You ' + jobs[Math.floor(Math.random() * jobs.length)] + '\n\nYou earned ' + creditsEarned.toString() + ' credits.'); + msg.channel.send('You ' + jobs[Math.floor(Math.random() * jobs.length)] + '\n\nYou earned ' + creditsEarned.toString() + ' atoms.'); } cooldown.add(msg.author.id); setTimeout(() => { @@ -48,5 +48,5 @@ exports.conf = { exports.help = { name: 'jobs', - description: 'Work to add credits to your account.', + description: 'Work to add atoms to your account.', }; -- cgit v1.2.3