From 9dfe12c8ca623d5060cb7ebcd117337e8249c035 Mon Sep 17 00:00:00 2001 From: rlevet <36737524+rlevet@users.noreply.github.com> Date: Sun, 7 Feb 2021 00:17:30 +0100 Subject: [PATCH] Markers fix --- addons/sourcemod/scripting/MyJailbreak/Modules/Warden/marker.sp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/sourcemod/scripting/MyJailbreak/Modules/Warden/marker.sp b/addons/sourcemod/scripting/MyJailbreak/Modules/Warden/marker.sp index 2bbab5e6..9b9cca42 100644 --- a/addons/sourcemod/scripting/MyJailbreak/Modules/Warden/marker.sp +++ b/addons/sourcemod/scripting/MyJailbreak/Modules/Warden/marker.sp @@ -286,7 +286,7 @@ public int Handle_MarkerMenu(Menu menu, MenuAction action, int client, int itemN { if (action == MenuAction_Select) { - if(IsValidClient(client, false, false) && (!IsClientWarden(client) && !IsClientDeputy(client))) + if (IsValidClient(client, false, false) && (IsClientWarden(client) || IsClientDeputy(client))) { char info[32];char info2[32]; bool found = menu.GetItem(itemNum, info, sizeof(info), _, info2, sizeof(info2));