From f3dac73fa28a3817a25d51f3957a584a0fd77e8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Badano?= Date: Sat, 24 Jan 2015 15:40:41 -0300 Subject: [PATCH] interaction: removed debug info --- addons/interaction/XEH_clientInit.sqf | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/addons/interaction/XEH_clientInit.sqf b/addons/interaction/XEH_clientInit.sqf index 9714e47e41..bcc3f47def 100644 --- a/addons/interaction/XEH_clientInit.sqf +++ b/addons/interaction/XEH_clientInit.sqf @@ -19,13 +19,11 @@ GVAR(isOpeningDoor) = false; ["ACE3", localize "STR_ACE_Interaction_InteractionMenu", { - systemChat "interactionMenuDown"; // Conditions: canInteract _exceptions = ["ACE_Drag_isNotDragging", "ACE_Medical_canTreat", "ACE_Interaction_isNotEscorting", "ACE_Interaction_isNotSwimming"]; if !(_exceptions call EGVAR(common,canInteract)) exitWith {false}; // Conditions: specific if !(isNull (findDisplay 1713999)) exitWith {false}; - systemChat "interactionMenuDown Statement"; // Statement call FUNC(onButtonDown); @@ -39,13 +37,11 @@ GVAR(isOpeningDoor) = false; ["ACE3", localize "STR_ACE_Interaction_InteractionMenu", { - systemChat "interactionMenu Up"; // Conditions: canInteract _exceptions = ["ACE_Drag_isNotDragging", "ACE_Medical_canTreat", "ACE_Interaction_isNotEscorting", "ACE_Interaction_isNotSwimming"]; if !(_exceptions call EGVAR(common,canInteract)) exitWith {false}; // Conditions: specific if !(!isNull (findDisplay 1713999) && {profileNamespace getVariable [QGVAR(AutoCloseMenu), 0] > 0}) exitWith {false}; - systemChat "interactionMenu Up Statement"; // Statement if (GVAR(MenuType) mod 2 == 0) then {call FUNC(onButtonUp)}; @@ -59,13 +55,12 @@ GVAR(isOpeningDoor) = false; ["ACE3", localize "STR_ACE_Interaction_InteractionMenuSelf", { - systemChat "interactionMenuSelf Down"; // Conditions: canInteract _exceptions = ["ACE_Drag_isNotDragging", "ACE_Medical_canTreat", "ACE_Interaction_isNotEscorting", "ACE_Interaction_isNotSwimming", "ACE_Common_notOnMap"]; if !(_exceptions call EGVAR(common,canInteract)) exitWith {false}; // Conditions: specific if !(isNull (findDisplay 1713999)) exitWith {false}; - systemChat "interactionMenuSelf Down Statement"; + // Statement call FUNC(onButtonDownSelf); true @@ -78,13 +73,11 @@ GVAR(isOpeningDoor) = false; ["ACE3", localize "STR_ACE_Interaction_InteractionMenuSelf", { - systemChat "interactionMenuSelf Up"; // Conditions: canInteract _exceptions = ["ACE_Drag_isNotDragging", "ACE_Medical_canTreat", "ACE_Interaction_isNotEscorting", "ACE_Interaction_isNotSwimming"]; if !(_exceptions call EGVAR(common,canInteract)) exitWith {false}; // Conditions: specific if !(!isNull (findDisplay 1713999) && {profileNamespace getVariable [QGVAR(AutoCloseMenu), 0] > 0}) exitWith {false}; - systemChat "interactionMenuSelf Up Statement"; // Statement if (GVAR(MenuType) mod 2 == 1) then {call FUNC(onButtonUp)};