From 2d49ca766a6e876ef84290a4cde3901c3858825b Mon Sep 17 00:00:00 2001 From: jadis0x <49281043+jadis0x@users.noreply.github.com> Date: Fri, 7 Oct 2022 21:24:52 +0300 Subject: [PATCH] add: function for the shoot the players button --- DevourClient/Features/Menu.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/DevourClient/Features/Menu.cpp b/DevourClient/Features/Menu.cpp index 8d3d9ae..68595f7 100644 --- a/DevourClient/Features/Menu.cpp +++ b/DevourClient/Features/Menu.cpp @@ -186,6 +186,10 @@ void DrawMapSpecificTab() { if (ImGui::Button("Force start game")) { Misc::ForceStart(); } + + if (ImGui::Button("Shoot the players (Town Only)")) { + Misc::ShootPlayers(); + } } bool inspector = false;