Skip to content
This repository has been archived by the owner on Dec 19, 2018. It is now read-only.

Commit

Permalink
Make response texts for activation BOLD/ITALICS
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Ray committed Oct 6, 2018
1 parent d01cd37 commit 6c8d138
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion commands/racd.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ exports.run = (client, message, args) => {
message.delete();
const guild = client.guilds.get(guildID);
(guild !== undefined) ? guild.leave() : null;
message.channel.send(`✅ Deactivated Moonglow on ${args[0]}`);
message.channel.send(`✅ ***Deactivated Moonglow on ${args[0]}***`);
}
else {
message.channel.send('Specified guild was never activated.');
Expand Down
2 changes: 1 addition & 1 deletion commands/racr.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ exports.run = async (client, message, args) => {

});
message.delete();
message.channel.send(`✅ Moonglow has been activated on ${guildID} for <@!${args[1]}>`);
message.channel.send(`✅ ***Moonglow has been activated on ${guildID} for <@!${args[1]}>***`);
// I'm going to convert this over to discord.js really quick btw
// Alright
}
Expand Down

0 comments on commit 6c8d138

Please sign in to comment.