Add Zero-Width-Space to all 'Say' and 'Translate' Commands

This commit is contained in:
Daniel Odendahl Jr
2017-04-07 22:35:42 +00:00
parent ed1f15a4ce
commit 03695dc4a2
7 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -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}`);
}
};