Skip to content

Commit

Permalink
Merge pull request darkerz7#65 from Rushaway/71
Browse files Browse the repository at this point in the history
fix(hud): allow display even if a menu is open
  • Loading branch information
darkerz7 authored Jan 16, 2025
2 parents 92f6c54 + 5653312 commit ce32699
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/entwatch/module_hud.inc
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ public Action EWM_Hud_Timer_DisplayHUD(Handle timer, int client)

for (int i = 1; i <= MaxClients; i++)
{
if (!IsClientInGame(i) || IsFakeClient(i) || !g_CSettings_Hud[i].Display || GetClientMenu(i) != MenuSource_None)
if (!IsClientInGame(i) || IsFakeClient(i) || !g_CSettings_Hud[i].Display)
{
iRotationTime[i] = 0;
continue;
Expand Down
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/entwatch_dz.sp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public Plugin myinfo =
name = "EntWatch",
author = "DarkerZ[RUS], AgentWesker, notkoen, sTc2201, maxime1907, Cmer, .Rushaway, Dolly",
description = "Notify players about entity interactions.",
version = "3.DZ.70",
version = "3.DZ.71",
url = "dark-skill.ru"
};

Expand Down

0 comments on commit ce32699

Please sign in to comment.