Merge pull request #390 from dayzai/experimental

Prevent headless client from being handled as a player client
This commit is contained in:
vbawol 2015-10-03 21:36:50 -05:00
commit 9a21f87a10
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
if !(isNil "Epoch_CStart") exitWith { false };
Epoch_CStart = true;
if (!isDedicated) then {
if (!isDedicated && hasInterface) then {
call compile preprocessFileLineNumbers "\x\addons\a3_epoch_code\init\both_init.sqf";
// Epoch Client Only function compiler

View File

@ -1,4 +1,4 @@
if (!isDedicated && isMultiplayer) then {
if (!isDedicated && isMultiplayer && hasInterface) then {
call compile preprocessFileLineNumbers "\x\addons\a3_epoch_code\init\client_init.sqf";
};
true