From b416e66509aa2f4eb6a55e3ff309813f2ca81c9f Mon Sep 17 00:00:00 2001 From: esteldunedain Date: Sat, 30 May 2015 00:31:52 -0300 Subject: [PATCH] Fix problem with #1214. Probably solve #1273 --- addons/common/XEH_preInit.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/common/XEH_preInit.sqf b/addons/common/XEH_preInit.sqf index fbd5f3ddd5..85478c03ca 100644 --- a/addons/common/XEH_preInit.sqf +++ b/addons/common/XEH_preInit.sqf @@ -309,8 +309,8 @@ GVAR(SettingsInitialized) = false; // Load settings on the server and broadcast them if (isServer) then { call FUNC(loadSettingsOnServer); - // Raise a local event for other modules to listen too - ["ServerSettingsReceived", []] call FUNC(localEvent); + // Raise a global event to notify settings from the server have arrived + ["ServerSettingsReceived", []] call FUNC(globalEvent); }; ACE_player = player;