From f48bf2351a889766064fe293f524bf6f38f2d618 Mon Sep 17 00:00:00 2001 From: Yunfan Li Date: Sat, 31 Aug 2024 17:23:13 +0800 Subject: [PATCH] Test items filter --- src/RandomItemMgr.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/RandomItemMgr.cpp b/src/RandomItemMgr.cpp index 2d9f3d5b..fdde9c95 100644 --- a/src/RandomItemMgr.cpp +++ b/src/RandomItemMgr.cpp @@ -972,7 +972,8 @@ void RandomItemMgr::BuildItemInfoCache() strstr(proto->Name1.c_str(), " TEST") || strstr(proto->Name1.c_str(), "2200 ") || strstr(proto->Name1.c_str(), "Deprecated ") || strstr(proto->Name1.c_str(), "Unused ") || strstr(proto->Name1.c_str(), "Monster ") || strstr(proto->Name1.c_str(), "[PH]") || - strstr(proto->Name1.c_str(), "(OLD)") || strstr(proto->Name1.c_str(), "QR")) + strstr(proto->Name1.c_str(), "(OLD)") || strstr(proto->Name1.c_str(), "QR") || + strstr(proto->Name1.c_str(), "zzOLD")) { itemForTest.insert(proto->ItemId); continue;