diff --git a/cheat-library/src/user/cheat/esp/ESP.cpp b/cheat-library/src/user/cheat/esp/ESP.cpp index 541cbf2..cc569b8 100644 --- a/cheat-library/src/user/cheat/esp/ESP.cpp +++ b/cheat-library/src/user/cheat/esp/ESP.cpp @@ -513,6 +513,7 @@ namespace cheat::feature ADD_FILTER_FIELD(mineral, ScarletQuartz); ADD_FILTER_FIELD(mineral, StarSilver); ADD_FILTER_FIELD(mineral, WhiteIronChunk); + ADD_FILTER_FIELD(mineral, DunlinsTooth); // Trounce. Arranged by appearance in-game. ADD_FILTER_FIELD(monster, Dvalin); diff --git a/cheat-library/src/user/cheat/game/filters.cpp b/cheat-library/src/user/cheat/game/filters.cpp index aaa1221..8a40ade 100644 --- a/cheat-library/src/user/cheat/game/filters.cpp +++ b/cheat-library/src/user/cheat/game/filters.cpp @@ -107,6 +107,7 @@ namespace cheat::game::filters SimpleFilter ScarletQuartz = { app::EntityType__Enum_1::GatherObject, "_OreDulinsBlood" }; SimpleFilter StarSilver = { app::EntityType__Enum_1::GatherObject, "_OreMoonMeteor" }; SimpleFilter WhiteIronChunk = { app::EntityType__Enum_1::GatherObject, "_OreMetal" }; + SimpleFilter DunlinsTooth = { app::EntityType__Enum_1::GatherObject, "_DunlinsTooth" }; } namespace monster diff --git a/cheat-library/src/user/cheat/game/filters.h b/cheat-library/src/user/cheat/game/filters.h index fac4fee..4d2936e 100644 --- a/cheat-library/src/user/cheat/game/filters.h +++ b/cheat-library/src/user/cheat/game/filters.h @@ -107,6 +107,7 @@ namespace cheat::game::filters extern SimpleFilter ScarletQuartz; extern SimpleFilter StarSilver; extern SimpleFilter WhiteIronChunk; + extern SimpleFilter DunlinsTooth; } namespace monster