From 069ab2432a7bf47ded7ce65a29b2258d2743f973 Mon Sep 17 00:00:00 2001 From: SilentSpike Date: Sun, 5 Jul 2015 01:32:06 +0100 Subject: [PATCH] Keybinds should always be present --- addons/spectator/XEH_postInit.sqf | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/addons/spectator/XEH_postInit.sqf b/addons/spectator/XEH_postInit.sqf index c6612e49c8..9a895031b5 100644 --- a/addons/spectator/XEH_postInit.sqf +++ b/addons/spectator/XEH_postInit.sqf @@ -1,5 +1,5 @@ #include "script_component.hpp" - +#include "initKeybinds.sqf"; // Add interaction menu exception ["isNotSpectating", {!((_this select 0) getVariable [QGVAR(isSpectator), false])}] call EFUNC(common,addCanInteractWithCondition); @@ -37,6 +37,4 @@ player addEventHandler ["Killed", FUNC(handleKilled)]; player addEventHandler ["Respawn", FUNC(handleRespawn)]; - #include "initKeybinds.sqf"; - }] call EFUNC(common,addEventHandler);