From 52423baaf0b6061321852ba081bb6a8e52812467 Mon Sep 17 00:00:00 2001 From: Zylox <76428709+0xZylox@users.noreply.github.com> Date: Fri, 26 Aug 2022 13:39:40 +0200 Subject: [PATCH] Add SumeruCrudeChest to esp --- cheat-library/src/user/cheat/game/Chest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cheat-library/src/user/cheat/game/Chest.cpp b/cheat-library/src/user/cheat/game/Chest.cpp index ba6cba5..4938f3e 100644 --- a/cheat-library/src/user/cheat/game/Chest.cpp +++ b/cheat-library/src/user/cheat/game/Chest.cpp @@ -20,7 +20,7 @@ namespace cheat::game if (name().find("TreasureBox") != std::string::npos) m_ItemType = ItemType::Chest; - else if (name().find("Search") != std::string::npos || name().find("JunkChest") != std::string::npos) + else if (name().find("Search") != std::string::npos || name().find("JunkChest") != std::string::npos || name().find("SumeruCrudeChest")) m_ItemType = ItemType::Investigate; else if (name().find("BookPage") != std::string::npos) m_ItemType = ItemType::BookPage;