From 2088671f4df37f2fdd7ca60e617bd1f076c7bbc9 Mon Sep 17 00:00:00 2001 From: ServerFailure <38225991+ServerFailure@users.noreply.github.com> Date: Sun, 1 Feb 2026 05:51:53 -0500 Subject: [PATCH] Update eloot.lic Fixing the line match for box_loot_ground --- scripts/eloot.lic | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/eloot.lic b/scripts/eloot.lic index e670d866a..6d6604fde 100644 --- a/scripts/eloot.lic +++ b/scripts/eloot.lic @@ -4563,7 +4563,7 @@ module ELoot # Room looting box_list.each do |box| line = ELoot.get_res("open ##{box.id}", /open|locked/) - next if line&.match?(/That is locked/) + next if line&.match?(/It appears to be locked/) quiet_msg = ELoot.data.settings[:display_box_contents] ? false : true ELoot.get_command("look in ##{box.id}", ELoot.data.look_regex, silent: quiet_msg, quiet: quiet_msg)