diff --git a/commands/textedit/pirate.js b/commands/textedit/pirate.js index 572303d2..fc78f95c 100644 --- a/commands/textedit/pirate.js +++ b/commands/textedit/pirate.js @@ -35,6 +35,6 @@ module.exports = class PirateCommand extends commando.Command { const turnToPirate = args.text; const pirate = pirateSpeak.translate(turnToPirate); if (pirate.length > 1950) return message.say(':x: Error! Your message is too long!'); - return message.say(pirate); + return message.say(`\u180E${pirate}`); } }; diff --git a/commands/textedit/reverse.js b/commands/textedit/reverse.js index aa4f8fcc..d34c9140 100644 --- a/commands/textedit/reverse.js +++ b/commands/textedit/reverse.js @@ -23,6 +23,6 @@ module.exports = class ReverseCommand extends commando.Command { console.log(`[Command] ${message.content}`); const stringToReverse = args.text; const reversed = stringToReverse.split('').reverse().join(''); - return message.say(reversed); + return message.say(`\u180E${reversed}`); } }; diff --git a/commands/textedit/say.js b/commands/textedit/say.js index 1fba53de..ad28492e 100644 --- a/commands/textedit/say.js +++ b/commands/textedit/say.js @@ -30,6 +30,6 @@ module.exports = class SayCommand extends commando.Command { console.log(`[Command] ${message.content}`); const copycat = args.text; await message.delete(); - return message.say(copycat); + return message.say(`\u180E${copycat}`); } }; diff --git a/commands/textedit/shuffle.js b/commands/textedit/shuffle.js index ea3404ac..7bde7a91 100644 --- a/commands/textedit/shuffle.js +++ b/commands/textedit/shuffle.js @@ -34,6 +34,6 @@ module.exports = class ShuffleCommand extends commando.Command { } console.log(`[Command] ${message.content}`); const thingToShuffle = args.text; - return message.say(thingToShuffle.shuffle()); + return message.say(`\u180E${thingToShuffle.shuffle()}`); } }; diff --git a/commands/textedit/temmie.js b/commands/textedit/temmie.js index b87ae005..3e14fcd2 100644 --- a/commands/textedit/temmie.js +++ b/commands/textedit/temmie.js @@ -30,6 +30,6 @@ module.exports = class TemmieCommand extends commando.Command { console.log(`[Command] ${message.content}`); const thingToTranslate = args.text; const temmized = temmize(thingToTranslate); - return message.say(temmized); + return message.say(`\u180E${temmized}`); } }; diff --git a/commands/textedit/yoda.js b/commands/textedit/yoda.js index da995fdb..4bb5842c 100644 --- a/commands/textedit/yoda.js +++ b/commands/textedit/yoda.js @@ -33,7 +33,7 @@ module.exports = class YodaCommand extends commando.Command { .query({ sentence: turnToYoda }); - return message.say(response.text); + return message.say(`\u180E${response.text}`); } catch (err) { return message.say(':x: Error! Something went wrong!'); diff --git a/commands/textedit/zalgo.js b/commands/textedit/zalgo.js index 3f02d22e..a76a5203 100644 --- a/commands/textedit/zalgo.js +++ b/commands/textedit/zalgo.js @@ -29,6 +29,6 @@ module.exports = class ZalgoCommand extends commando.Command { } console.log(`[Command] ${message.content}`); const zalgoified = zalgo(args.text); - return message.say(zalgoified); + return message.say(`\u180E${zalgoified}`); } };