From 578d791176b8720f77c3dd3c046c1103197b0e77 Mon Sep 17 00:00:00 2001 From: onms Date: Sat, 27 Jun 2026 09:00:03 -0500 Subject: [PATCH] fix for case sensitivity not registering many of the terms into the journal --- www/js/plugins/SceneGlossary.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/plugins/SceneGlossary.js b/www/js/plugins/SceneGlossary.js index 267b4e4..2790bea 100644 --- a/www/js/plugins/SceneGlossary.js +++ b/www/js/plugins/SceneGlossary.js @@ -1338,7 +1338,7 @@ function Window_GlossaryComplete() { Game_Party.prototype.gainGlossaryFromText = function(text, likeFlag) { this.getAllHiddenGlossaryList().forEach(function(item) { if (!this.hasItem(item) && this.isAutoGlossaryWord(item)) { - if (likeFlag && !text.contains(item.name)) { + if (likeFlag && !text.toLowerCase().contains(item.name.toLowerCase())) { return; } if (!likeFlag && text !== item.name) {