diff --git a/cheat-library/src/user/cheat/esp/ESP.cpp b/cheat-library/src/user/cheat/esp/ESP.cpp index a81f445..9320d69 100644 --- a/cheat-library/src/user/cheat/esp/ESP.cpp +++ b/cheat-library/src/user/cheat/esp/ESP.cpp @@ -429,10 +429,12 @@ namespace cheat::feature ADD_FILTER_FIELD(featured, Anemoculus); ADD_FILTER_FIELD(featured, CrimsonAgate); + ADD_FILTER_FIELD(featured, EchoingConch); ADD_FILTER_FIELD(featured, Electroculus); ADD_FILTER_FIELD(featured, Electrogranum); ADD_FILTER_FIELD(featured, FishingPoint); ADD_FILTER_FIELD(featured, Geoculus); + ADD_FILTER_FIELD(featured, ImagingConch); ADD_FILTER_FIELD(featured, ItemDrops); ADD_FILTER_FIELD(featured, KeySigil); ADD_FILTER_FIELD(featured, Lumenspar); diff --git a/cheat-library/src/user/cheat/game/filters.cpp b/cheat-library/src/user/cheat/game/filters.cpp index 6e6290e..df8d30e 100644 --- a/cheat-library/src/user/cheat/game/filters.cpp +++ b/cheat-library/src/user/cheat/game/filters.cpp @@ -48,10 +48,12 @@ namespace cheat::game::filters { SimpleFilter Anemoculus = { EntityType__Enum_1::GatherObject, "WindCrystalShell" }; SimpleFilter CrimsonAgate = { EntityType__Enum_1::GatherObject, "Prop_Essence" }; + SimpleFilter EchoingConch = { EntityType__Enum_1::EchoShell, "_Echoconch" }; SimpleFilter Electroculus = { EntityType__Enum_1::GatherObject, "Prop_ElectricCrystal" }; SimpleFilter Electrogranum = { EntityType__Enum_1::Gadget, "ThunderSeedCreate" }; SimpleFilter FishingPoint = { EntityType__Enum_1::FishPool, "_FishingShoal" }; SimpleFilter Geoculus = { EntityType__Enum_1::GatherObject, "RockCrystalShell" }; + SimpleFilter ImagingConch = { EntityType__Enum_1::EchoShell, "_Dreamconch" }; WhitelistFilter ItemDrops = { {EntityType__Enum_1::GatherObject, EntityType__Enum_1::DropItem }, {"_Food_BirdMeat", "_Food_Meat", "_DropItem" } }; SimpleFilter Lumenspar = { EntityType__Enum_1::GatherObject, "CelestiaSplinter" }; SimpleFilter KeySigil = { EntityType__Enum_1::GatherObject, "RuneContent" }; diff --git a/cheat-library/src/user/cheat/game/filters.h b/cheat-library/src/user/cheat/game/filters.h index 9553cf1..6547918 100644 --- a/cheat-library/src/user/cheat/game/filters.h +++ b/cheat-library/src/user/cheat/game/filters.h @@ -48,10 +48,12 @@ namespace cheat::game::filters { extern SimpleFilter Anemoculus; extern SimpleFilter CrimsonAgate; + extern SimpleFilter EchoingConch; extern SimpleFilter Electroculus; extern SimpleFilter Electrogranum; extern SimpleFilter FishingPoint; extern SimpleFilter Geoculus; + extern SimpleFilter ImagingConch; extern WhitelistFilter ItemDrops; extern SimpleFilter Lumenspar; extern SimpleFilter KeySigil;