Merge pull request #525 from 0xZylox/addcrudechestfilter

Adds the Sumeru Crude Chest to esp
This commit is contained in:
Taiga 2022-08-27 15:46:56 -06:00 committed by GitHub
commit 440e277c2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ namespace cheat::game
if (name().find("TreasureBox") != std::string::npos) if (name().find("TreasureBox") != std::string::npos)
m_ItemType = ItemType::Chest; 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") != std::string::npos)
m_ItemType = ItemType::Investigate; m_ItemType = ItemType::Investigate;
else if (name().find("BookPage") != std::string::npos) else if (name().find("BookPage") != std::string::npos)
m_ItemType = ItemType::BookPage; m_ItemType = ItemType::BookPage;