Prevent headless client from being handled as a player client

This commit is contained in:
Face 2015-10-03 14:02:01 -04:00
parent bf0828f1ef
commit 8896c313ab
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