Compare commits

..

1 Commits

Author SHA1 Message Date
1e33777af7
try to load full-width names
global stinx
2020-08-11 12:14:28 -04:00

View File

@ -975,7 +975,7 @@ class Player {
if(cur.Character) { if(cur.Character) {
nameToUse = cur.Arg1; nameToUse = cur.Arg1;
} }
nameFullWidth = nameToUse.replace(/[A-Za-z0-9]/g, function(s) {return String.fromCharCode(s.charCodeAt(0) + 0xFEE0);}); let nameFullWidth = nameToUse.replace(/[A-Za-z0-9]/g, function(s) {return String.fromCharCode(s.charCodeAt(0) + 0xFEE0);});
this.text.characterName(true, this.utage.charTranslations[nameToUse] || this.utage.charTranslations[nameFullWidth] || nameToUse); this.text.characterName(true, this.utage.charTranslations[nameToUse] || this.utage.charTranslations[nameFullWidth] || nameToUse);
this.text.dialogText(true, text); this.text.dialogText(true, text);
//restoreTint is set from a colorTo command. //restoreTint is set from a colorTo command.