Adjust list size and translate more options

This commit is contained in:
Dazed 2023-08-15 10:42:12 -05:00
parent 175c8cc7c5
commit 448e8f4280
2 changed files with 4 additions and 4 deletions

File diff suppressed because one or more lines are too long

View file

@ -1480,7 +1480,7 @@ Window_Help.prototype.constructor = Window_Help;
Window_Help.prototype.initialize = function (numLines) {
var width = Graphics.boxWidth;
var height = this.fittingHeight(numLines || 2);
var height = this.fittingHeight(numLines || 3);
Window_Base.prototype.initialize.call(this, 0, 0, width, height);
this._text = '';
};