Commit ce73dc49 authored by Ivaria's avatar Ivaria
Browse files

Fixed the inability for players without asist priv or higher to see ready...

Fixed the inability for players without asist priv or higher to see ready checks - closes CurseForge ticket 349
parent d6ccf83c
......@@ -514,13 +514,13 @@ function VUHDO_OnEvent(_, anEvent, anArg1, anArg2, anArg3, anArg4, anArg5, anArg
if VUHDO_VARIABLES_LOADED then VUHDO_parseAddonMessage(anArg1, anArg2, anArg4); end
elseif "READY_CHECK" == anEvent then
if VUHDO_RAID and (VUHDO_getPlayerRank()) >= 1 then VUHDO_readyStartCheck(anArg1, anArg2); end
if VUHDO_RAID then VUHDO_readyStartCheck(anArg1, anArg2); end
elseif "READY_CHECK_CONFIRM" == anEvent then
if VUHDO_RAID and (VUHDO_getPlayerRank()) >= 1 then VUHDO_readyCheckConfirm(anArg1, anArg2); end
if VUHDO_RAID then VUHDO_readyCheckConfirm(anArg1, anArg2); end
elseif "READY_CHECK_FINISHED" == anEvent then
if VUHDO_RAID and (VUHDO_getPlayerRank()) >= 1 then VUHDO_readyCheckEnds(); end
if VUHDO_RAID then VUHDO_readyCheckEnds(); end
elseif "CVAR_UPDATE" == anEvent then
VUHDO_IS_SFX_ENABLED = tonumber(GetCVar("Sound_EnableSFX")) == 1;
......
......@@ -3,6 +3,7 @@ Version 3.65.
Bugfixes:
-- Fixed profile activation due to group size 20
-- Fixed the inability of players without assist to see ready checks
Improvements:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment