ESO Lua File v100012

app/loadingscreen/console/zo_voicechathudloadingscreen_console.lua

[◄ back to folders ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--------------------------------------------
-- VoiceChat HUD Loading Screen Console
--------------------------------------------
ZO_VoiceChatHUDLoadingScreen_Console = {}
--XML Calls
    zo_mixin(control, ZO_VoiceChatHUD, ZO_VoiceChatHUDLoadingScreen_Console)
    local function OnLogoutSuccessful()
        control.speakerData = {}
        control.delayedClears = {}
        control:Update()
    end
    control:RegisterForEvent(EVENT_LOGOUT_SUCCESSFUL, OnLogoutSuccessful)
end
     control:Update()
end