Epoch/Sources/epoch_code/compile/setup/masterLoop/Event0.sqf
2018-01-19 16:14:21 +01:00

11 lines
191 B
Plaintext

// runs every 0.4 seconds
if (EPOCH_IsAutoRunning) then {
if (call EPOCH_AutoRun_Check) then {
call EPOCH_AutoRun;
}
else {
EPOCH_IsAutoRunning = false;
player switchMove "";
};
};