From f052434dd0417664dfc8bbd80d34ea1ffe2cc367 Mon Sep 17 00:00:00 2001 From: dazedanon Date: Sun, 21 Dec 2025 13:43:42 -0600 Subject: [PATCH] Shrink lables --- js/plugins/EventLabel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/plugins/EventLabel.js b/js/plugins/EventLabel.js index 19d62ed..ee487ce 100644 --- a/js/plugins/EventLabel.js +++ b/js/plugins/EventLabel.js @@ -280,7 +280,7 @@ Game_Event.prototype.initialize = function() { _Game_Event_initialize.apply(this, arguments); this._labelText = this.findLabelName(); - this._labelSize = param.fontSize || 16; + this._labelSize = 13; this._labelX = PluginManagerEx.findMetaValue(this.event(), 'LB_X') || 0; this._labelY = PluginManagerEx.findMetaValue(this.event(), 'LB_Y') || 0; this._labelZ = PluginManagerEx.findMetaValue(this.event(), 'LB_Z') || 0;