From 68109a88c4707bab948b40c02acc28b17a27fd7a Mon Sep 17 00:00:00 2001 From: TheEdgeNK Date: Wed, 27 Jun 2018 18:22:17 -0400 Subject: We made PokeCoins... whee --- commands/Fun/jobs.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'commands/Fun/jobs.js') diff --git a/commands/Fun/jobs.js b/commands/Fun/jobs.js index f71ba28..3d42fdf 100644 --- a/commands/Fun/jobs.js +++ b/commands/Fun/jobs.js @@ -13,9 +13,9 @@ exports.run = (bot, msg) => { const jobs = [ "started a BitCoin farm", - "pissed for an elderly woman", + "crashed an airplane", "became a doctor and illegally sold organs", - "extracted eggs from elderly women", + "stole Blake Australia's fame and made a lot of money", "became a bus driver", "started working for Universe Dev Group", "programmed a Discord bot", @@ -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 worked and ' + 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() + ' credits.'); } else { var creditsEarned = Math.floor(Math.random() * 250); bot.plugins.economy.add(msg.author.id, creditsEarned); - msg.channel.send('You worked and ' + 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() + ' credits.'); } cooldown.add(msg.author.id); setTimeout(() => { -- cgit v1.2.3