From 6004834dde2284889c20b1ea27291eec0f8bc84e Mon Sep 17 00:00:00 2001 From: jadis0x <49281043+jadis0x@users.noreply.github.com> Date: Sat, 8 Oct 2022 01:17:22 +0300 Subject: [PATCH] add: function for "revive yourself" and "revive everyone" buttons --- DevourClient/Features/Menu.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/DevourClient/Features/Menu.cpp b/DevourClient/Features/Menu.cpp index 9270296..3b96719 100644 --- a/DevourClient/Features/Menu.cpp +++ b/DevourClient/Features/Menu.cpp @@ -305,6 +305,14 @@ void DrawMiscTab() { //Unlock Achievements } + if (ImGui::Button("Revive Yourself")) { + Misc::Revive(false); + } + + if (ImGui::Button("Revive Everyone")) { + Misc::Revive(true); + } + ImGui::Checkbox("Unlock all", &settings::unlock_all); ImGui::Checkbox("Spoof level", &settings::spoof_level);