diff --git a/cheat-library/src/user/cheat/game/Chest.cpp b/cheat-library/src/user/cheat/game/Chest.cpp index 4938f3e..e996bea 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 || name().find("SumeruCrudeChest")) + else if (name().find("Search") != std::string::npos || name().find("JunkChest") != std::string::npos || name().find("SumeruCrudeChest") != std::string::npos) m_ItemType = ItemType::Investigate; else if (name().find("BookPage") != std::string::npos) m_ItemType = ItemType::BookPage;