diff options
Diffstat (limited to 'commands/Fun')
| -rw-r--r-- | commands/Fun/8ball.js | 2 | ||||
| -rw-r--r-- | commands/Fun/cureboredom.js | 2 | ||||
| -rw-r--r-- | commands/Fun/findmyphone.js | 53 | ||||
| -rw-r--r-- | commands/Fun/og151.js | 2 | ||||
| -rw-r--r-- | commands/Fun/ship.js | 2 | ||||
| -rw-r--r-- | commands/Fun/story.js | 2 |
6 files changed, 31 insertions, 32 deletions
diff --git a/commands/Fun/8ball.js b/commands/Fun/8ball.js index 28bf0e1..16d5d24 100644 --- a/commands/Fun/8ball.js +++ b/commands/Fun/8ball.js @@ -1,4 +1,4 @@ -/**************************************** +/** ************************************** * * 8ball: Plugin for PokeBot that allows users to use an 8ball. * Copyright (C) 2018 TheEdge, jtsshieh, Alee diff --git a/commands/Fun/cureboredom.js b/commands/Fun/cureboredom.js index 3b7cde5..1b7913c 100644 --- a/commands/Fun/cureboredom.js +++ b/commands/Fun/cureboredom.js @@ -1,4 +1,4 @@ -/**************************************** +/** ************************************** * * CureBoredom: Plugin for PokeBot that "cures" your boredom. * Copyright (C) 2018 TheEdge, jtsshieh, Alee diff --git a/commands/Fun/findmyphone.js b/commands/Fun/findmyphone.js index 482ceb3..1575917 100644 --- a/commands/Fun/findmyphone.js +++ b/commands/Fun/findmyphone.js @@ -1,4 +1,4 @@ -/**************************************** +/** ************************************** * * FindMyPhone: Plugin for PokeBot that "helps you find your phone". * Copyright (C) 2018 TheEdge, jtsshieh, Alee @@ -19,30 +19,29 @@ * *************************************/ exports.run = (bot, msg) => { - const cities = [ - 'Aurora', - 'Montgomery', - 'Chandler', - 'Boise', - 'Fresno', - 'Lubbock', - 'Miami', - 'Stockton', - 'Colorado Springs', - 'Portland', - 'Cincinnati', - ]; + const cities = [ + 'Aurora', + 'Montgomery', + 'Chandler', + 'Boise', + 'Fresno', + 'Lubbock', + 'Miami', + 'Stockton', + 'Colorado Springs', + 'Portland', + 'Cincinnati', + ]; - msg.channel.send(cities[Math.floor(Math.random() * cities.length)]); - }; - - exports.conf = { - aliases: ['findphone', 'findmyiphone', 'findmyandroid', 'findmyandroidphone'], - guildOnly: true, - }; - - exports.help = { - name: 'findmyphone', - description: 'Find your phone. Not just a random list of cities being randomly picked.', - }; -
\ No newline at end of file + msg.channel.send(cities[Math.floor(Math.random() * cities.length)]); +}; + +exports.conf = { + aliases: ['findphone', 'findmyiphone', 'findmyandroid', 'findmyandroidphone'], + guildOnly: true, +}; + +exports.help = { + name: 'findmyphone', + description: 'Find your phone. Not just a random list of cities being randomly picked.', +}; diff --git a/commands/Fun/og151.js b/commands/Fun/og151.js index 2c789c7..aa9a288 100644 --- a/commands/Fun/og151.js +++ b/commands/Fun/og151.js @@ -1,4 +1,4 @@ -/**************************************** +/** ************************************** * * og151: Plugin for PokeBot that randomly picks 1 out of the original 151 Pokemon. * Copyright (C) 2018 TheEdge, jtsshieh, Alee diff --git a/commands/Fun/ship.js b/commands/Fun/ship.js index ee218f8..fdf9e3e 100644 --- a/commands/Fun/ship.js +++ b/commands/Fun/ship.js @@ -1,4 +1,4 @@ -/**************************************** +/** ************************************** * * Ship: Plugin for PokeBot that ships the user with someone else. * Copyright (C) 2018 TheEdge, jtsshieh, Alee diff --git a/commands/Fun/story.js b/commands/Fun/story.js index 2faf510..de5a6ff 100644 --- a/commands/Fun/story.js +++ b/commands/Fun/story.js @@ -1,4 +1,4 @@ -/**************************************** +/** ************************************** * * Story: Plugin for PokeBot that tells the user a story. * Copyright (C) 2018 TheEdge, jtsshieh, Alee |
