This commit is contained in:
Zylox 2022-08-26 13:53:41 +02:00
parent 52423baaf0
commit 221900b8a8

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 || 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; 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;