diff options
Diffstat (limited to 'commands/Fun/jobs.js')
| -rw-r--r-- | commands/Fun/jobs.js | 8 |
1 files changed, 4 insertions, 4 deletions
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(() => { |
