From d5a75e73e18b96f378360944910fed72e656817e Mon Sep 17 00:00:00 2001 From: Dazed Date: Fri, 20 Oct 2023 09:12:30 -0500 Subject: [PATCH] Adjust # of lines in window --- www/js/rpg_windows.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/rpg_windows.js b/www/js/rpg_windows.js index 0204335..fca8c93 100644 --- a/www/js/rpg_windows.js +++ b/www/js/rpg_windows.js @@ -1495,7 +1495,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 = ''; };