Skip to content

Commit

Permalink
Merge pull request #5 from rlevet/patch-3
Browse files Browse the repository at this point in the history
Markers fix
  • Loading branch information
azalty authored Feb 6, 2021
2 parents 265d2a9 + 9dfe12c commit 739d223
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 739d223

Please sign in to comment.