This commit is contained in:
Dragon Fire
2020-06-14 22:17:03 -04:00
parent 3b8730b8e1
commit 3b57513a81
+4 -4
View File
@@ -86,17 +86,17 @@ module.exports = class UndertaleCommand extends Command {
switch (character) {
case 'sans':
font = 'UndertaleSans';
text = text.toLowerCase();
quote = quote.toLowerCase();
break;
case 'papyrus':
font = 'UndertalePapyrus';
text = text.toUpperCase();
quote = quote.toUpperCase();
break;
case 'napstablook':
text = text.toLowerCase();
quote = quote.toLowerCase();
break;
case 'temmie':
text = this.client.registry.commands.get('temmie').temmize(text);
quote = this.client.registry.commands.get('temmie').temmize(quote);
break;
}
ctx.font = `31px ${font}`;