Fix name pop spacing

This commit is contained in:
Dazed 2024-02-06 08:26:11 -06:00
parent bfffe7a02c
commit b61e3f7650

View file

@ -224,7 +224,7 @@ if (!TMPlugin.InterpreterBase) {
Game_CharacterBase.prototype.setNamePop = function (namePop, shiftY) {
if (namePop) {
namePop = $gameMap._interpreter.convertEscapeCharactersTM(namePop);
namePop = $gameMap._interpreter.convertEscapeCharactersTM(namePop.replace(/_/g, ' '));
}
this._namePop = namePop;
this._namePopY = shiftY || 0;