From e132d040bb9c068a956603863fbb88258e1a41cc Mon Sep 17 00:00:00 2001 From: Kevinthegreat <92656833+kevinthegreat1@users.noreply.github.com> Date: Thu, 14 Mar 2024 15:04:20 -0400 Subject: Fix bugs with secret detection Fix secret item detection with Personal Deleter Add trapped chest detection for mimics Add locked chest detection and set secret as missing if chest is locked Fix translatable text in Room --- src/main/resources/assets/skyblocker/dungeons/secretlocations.json | 2 +- src/main/resources/skyblocker.mixins.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'src/main/resources') diff --git a/src/main/resources/assets/skyblocker/dungeons/secretlocations.json b/src/main/resources/assets/skyblocker/dungeons/secretlocations.json index 0f22f597..760e72d9 100644 --- a/src/main/resources/assets/skyblocker/dungeons/secretlocations.json +++ b/src/main/resources/assets/skyblocker/dungeons/secretlocations.json @@ -4730,7 +4730,7 @@ "z":15 }, { - "secretName":"2 - Stonk", + "secretName":"1 - Stonk", "category":"stonk", "x":26, "y":112, diff --git a/src/main/resources/skyblocker.mixins.json b/src/main/resources/skyblocker.mixins.json index fd7364ce..c996c58d 100644 --- a/src/main/resources/skyblocker.mixins.json +++ b/src/main/resources/skyblocker.mixins.json @@ -9,6 +9,7 @@ "BatEntityMixin", "ClientPlayerEntityMixin", "ClientPlayNetworkHandlerMixin", + "ClientWorldMixin", "DataTrackerMixin", "DrawContextMixin", "DyeableItemMixin", -- cgit