aboutsummaryrefslogtreecommitdiff
path: root/commands/Fun/findmyphone.js
diff options
context:
space:
mode:
authorJustin <jtsshieh@outlook.com>2019-11-02 11:02:19 -0400
committerJustin <jtsshieh@outlook.com>2019-11-02 11:02:19 -0400
commit7031fa12ba79281edc49df972311c13ad0e8fa53 (patch)
tree60410a33fe45add85a9dc962c975be478f3f8cff /commands/Fun/findmyphone.js
parent106530d5dc53166632a6a0ecc8930eb2b1ed4bfd (diff)
downloadPokeBot-7031fa12ba79281edc49df972311c13ad0e8fa53.tar.gz
PokeBot-7031fa12ba79281edc49df972311c13ad0e8fa53.tar.bz2
PokeBot-7031fa12ba79281edc49df972311c13ad0e8fa53.zip
es-lint settings added + linted all files
Diffstat (limited to 'commands/Fun/findmyphone.js')
-rw-r--r--commands/Fun/findmyphone.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/Fun/findmyphone.js b/commands/Fun/findmyphone.js
index 135d449..bb930ef 100644
--- a/commands/Fun/findmyphone.js
+++ b/commands/Fun/findmyphone.js
@@ -19,7 +19,7 @@ exports.run = (bot, msg) => {
'Stockton',
'Colorado Springs',
'Portland',
- 'Cincinnati',
+ 'Cincinnati'
];
msg.channel.send(cities[Math.floor(Math.random() * cities.length)]);
@@ -27,10 +27,10 @@ exports.run = (bot, msg) => {
exports.conf = {
aliases: ['findphone', 'findmyiphone', 'findmyandroid', 'findmyandroidphone'],
- guildOnly: true,
+ guildOnly: true
};
exports.help = {
name: 'findmyphone',
- description: 'Find your phone. Not just a random list of cities being randomly picked.',
+ description: 'Find your phone. Not just a random list of cities being randomly picked.'
};