diff --git a/cheat-library/res/res.rc b/cheat-library/res/res.rc index ca167ba..cdccca4 100644 --- a/cheat-library/res/res.rc +++ b/cheat-library/res/res.rc @@ -1078,7 +1078,7 @@ SEALLOCATIONIV PNG "icons\\SealLocationIV.png" SEALLOCATIONV PNG "icons\\SealLocationV.png" -SEALLOCATIONI PNG "icons\\SealLocationI.png" +SEALLOCATIONS PNG "icons\\SealLocationI.png" SEELIE PNG "icons\\Seelie.png" diff --git a/cheat-library/src/user/cheat/esp/ESP.cpp b/cheat-library/src/user/cheat/esp/ESP.cpp index 6456f22..1da7ff3 100644 --- a/cheat-library/src/user/cheat/esp/ESP.cpp +++ b/cheat-library/src/user/cheat/esp/ESP.cpp @@ -649,6 +649,7 @@ namespace cheat::feature ADD_FILTER_FIELD(puzzle, OozingConcretions); ADD_FILTER_FIELD(puzzle, PirateHelm); ADD_FILTER_FIELD(puzzle, PressurePlate); + ADD_FILTER_FIELD(puzzle, SealLocations); ADD_FILTER_FIELD(puzzle, Seelie); ADD_FILTER_FIELD(puzzle, SeelieLamp); ADD_FILTER_FIELD(puzzle, SmallRockPile); diff --git a/cheat-library/src/user/cheat/game/filters.cpp b/cheat-library/src/user/cheat/game/filters.cpp index 1ba0863..938aee4 100644 --- a/cheat-library/src/user/cheat/game/filters.cpp +++ b/cheat-library/src/user/cheat/game/filters.cpp @@ -245,6 +245,7 @@ namespace cheat::game::filters SimpleFilter OozingConcretions = { app::EntityType__Enum_1::Gadget, "_AbyssCoreLv" }; SimpleFilter PirateHelm = { app::EntityType__Enum_1::Field, "_PirateHelm" }; WhitelistFilter PressurePlate = { std::vector {app::EntityType__Enum_1::Field, app::EntityType__Enum_1::Gadget }, std::vector {"Gear_Gravity", "_LitPathPlate" } }; + SimpleFilter SealLocations = { app::EntityType__Enum_1::Gadget, "_RunesKey" }; SimpleFilter SeelieLamp = { app::EntityType__Enum_1::Field, "Gear_SeeliaLamp" }; SimpleFilter Seelie = { app::EntityType__Enum_1::Platform, "Gear_Seelie" }; SimpleFilter SmallRockPile = { app::EntityType__Enum_1::Gadget, "_StonePile_01" }; diff --git a/cheat-library/src/user/cheat/game/filters.h b/cheat-library/src/user/cheat/game/filters.h index 8c67af9..fac4fee 100644 --- a/cheat-library/src/user/cheat/game/filters.h +++ b/cheat-library/src/user/cheat/game/filters.h @@ -244,6 +244,7 @@ namespace cheat::game::filters extern SimpleFilter OozingConcretions; extern SimpleFilter PirateHelm; extern WhitelistFilter PressurePlate; + extern SimpleFilter SealLocations; extern SimpleFilter SeelieLamp; extern SimpleFilter Seelie; extern SimpleFilter SmallRockPile;