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
@@ -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}`);
}
};