Revert "missing ; 's"

This reverts commit 9230db9c7a.
This commit is contained in:
DESKTOP-UH65DCE\MusTanG 2017-08-31 00:42:45 -05:00
parent f2fc2c9d6a
commit 33a663f72d

View File

@ -35,17 +35,17 @@ if(_return isEqualTo[]) then {
// check extra logic // check extra logic
_value = switch _extraLogicType do { _value = switch _extraLogicType do {
case "getDate": { case "getDate": {
date select _extraLogicName; date select _extraLogicName
}; };
case "getSunorMoon": { case "getSunorMoon": {
sunOrMoon; sunOrMoon
}; };
case "getMissionNamespaceVariable": { case "getMissionNamespaceVariable": {
missionNamespace getVariable [_extraLogicName, _extraLogicData]; missionNamespace getVariable [_extraLogicName, _extraLogicData]
}; };
// not really needed // not really needed
default { default {
_extraLogicName; _extraLogicName
}; };
}; };
_allow = [_value,_extraLogicCond,_extraLogicData] call EPOCH_fnc_arrayToLogic; _allow = [_value,_extraLogicCond,_extraLogicData] call EPOCH_fnc_arrayToLogic;