aboutsummaryrefslogtreecommitdiff
path: root/commands/Utility
diff options
context:
space:
mode:
Diffstat (limited to 'commands/Utility')
-rw-r--r--commands/Utility/git.js22
-rw-r--r--commands/Utility/nick.js2
-rw-r--r--commands/Utility/uptime.js2
-rw-r--r--commands/Utility/userinfo.js2
4 files changed, 3 insertions, 25 deletions
diff --git a/commands/Utility/git.js b/commands/Utility/git.js
deleted file mode 100644
index 67374bb..0000000
--- a/commands/Utility/git.js
+++ /dev/null
@@ -1,22 +0,0 @@
-/** **************************************
- *
- * Git: Plugin for PokeBot that provides gives the user information about the bot.
- * Copyright (C) 2018 TheEdge, jtsshieh, Alee
- *
- * Licensed under the Open Software License version 3.0
- *
- * *************************************/
-
-exports.run = (bot, msg) => {
- msg.channel.send('The GitHub page for PokeBot can be found here: https://github.com/UniverseDevGroup/PokeBot.');
-};
-
-exports.conf = {
- aliases: [],
- guildOnly: true,
-};
-
-exports.help = {
- name: 'git',
- description: 'Gives the user a link to the git.',
-};
diff --git a/commands/Utility/nick.js b/commands/Utility/nick.js
index bec9578..46f2d8a 100644
--- a/commands/Utility/nick.js
+++ b/commands/Utility/nick.js
@@ -23,7 +23,7 @@ exports.run = async (bot, msg, args) => {
.setDescription(`*${msg.author.tag}* changed their nickname`)
.addField('New Nickname', msg.member.displayName, true)
.setTimestamp()
- .setFooter('PokeBot v1.0')
+ .setFooter('Galaxy v2.0 Alpha 1')
);
};
diff --git a/commands/Utility/uptime.js b/commands/Utility/uptime.js
index 8492df2..1519504 100644
--- a/commands/Utility/uptime.js
+++ b/commands/Utility/uptime.js
@@ -21,7 +21,7 @@ exports.run = (bot, msg, args) => {
if (args[0] === 'ms') return msg.channel.send(bot.uptime + ' ms.');
if (args[0] === 's') return msg.channel.send(uptimeSeconds + ' seconds.');
if (args[0] === 'min') return msg.channel.send(Math.floor(uptime / 60) + ' minutes ' + uptimeSeconds + ' seconds.');
- msg.channel.send(':clock3: Pokebot has been up for ' + hours + ' hours, ' + uptimeMinutes + ' minutes, and ' + uptimeSeconds + ' seconds.');
+ msg.channel.send(':clock3: Galaxy has been online for ' + hours + ' hours, ' + uptimeMinutes + ' minutes, and ' + uptimeSeconds + ' seconds.');
};
diff --git a/commands/Utility/userinfo.js b/commands/Utility/userinfo.js
index 80844e1..666b48f 100644
--- a/commands/Utility/userinfo.js
+++ b/commands/Utility/userinfo.js
@@ -23,7 +23,7 @@ exports.run = async (bot, msg) => {
.addField('Account Creation Date', user.user.createdAt)
.addField('Join Guild Date', user.joinedAt)
.addField('Names', 'Display Name: ' + user.displayName + `\nUsername: ${user.user.tag}`)
- .setFooter('PokeBot v1.0')
+ .setFooter('Galaxy v2.0 Alpha 1')
);
};