From 41a7372ce769ebb41ac793bd3404d66c781f737a Mon Sep 17 00:00:00 2001 From: Damian-I Date: Sat, 8 Feb 2025 15:31:30 +0000 Subject: [PATCH] Remove container unlock alerts - Eliminate redundant alert messages when unlocking containers - Preserve the existing logic for preventing automatic item collection - Simplify user interaction by removing unnecessary pop-up notifications --- index.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/index.html b/index.html index 50c5456..f793cca 100644 --- a/index.html +++ b/index.html @@ -1854,14 +1854,12 @@ // Set new state for containers with contents if (lockable.scenarioData.contents) { lockable.scenarioData.isUnlockedButNotCollected = true; - alert('Container unlocked! You can now collect its contents.'); return; // Return early to prevent automatic collection } } else { lockable.locked = false; if (lockable.contents) { lockable.isUnlockedButNotCollected = true; - alert('Container unlocked! You can now collect its contents.'); return; // Return early to prevent automatic collection } }