Fix name pop spacing
This commit is contained in:
parent
bfffe7a02c
commit
b61e3f7650
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue