From 740c18dfd7cf46574211ccecfd72224b0010e0f0 Mon Sep 17 00:00:00 2001 From: commy2 Date: Tue, 29 Nov 2016 01:11:22 +0100 Subject: [PATCH] Skip help postInit on non-interface machines, fix #557 --- addons/help/XEH_postClientInit.sqf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/help/XEH_postClientInit.sqf b/addons/help/XEH_postClientInit.sqf index 77507ebd3..e894b9fec 100644 --- a/addons/help/XEH_postClientInit.sqf +++ b/addons/help/XEH_postClientInit.sqf @@ -1,6 +1,8 @@ //#define DEBUG_MODE_FULL #include "script_component.hpp" +if (!hasInterface) exitWith {}; + // create diary player createDiarySubject ["CBA_docs", "CBA"];