From 33a663f72de543edad84a6cde6253888040de776 Mon Sep 17 00:00:00 2001 From: "DESKTOP-UH65DCE\\MusTanG" Date: Thu, 31 Aug 2017 00:42:45 -0500 Subject: [PATCH] Revert "missing ; 's" This reverts commit 9230db9c7acc980127188a144b2e5e9a26666a66. --- Sources/epoch_code/compile/both/EPOCH_weightedArray.sqf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Sources/epoch_code/compile/both/EPOCH_weightedArray.sqf b/Sources/epoch_code/compile/both/EPOCH_weightedArray.sqf index bc4ffbab..832d01ca 100644 --- a/Sources/epoch_code/compile/both/EPOCH_weightedArray.sqf +++ b/Sources/epoch_code/compile/both/EPOCH_weightedArray.sqf @@ -35,17 +35,17 @@ if(_return isEqualTo[]) then { // check extra logic _value = switch _extraLogicType do { case "getDate": { - date select _extraLogicName; + date select _extraLogicName }; case "getSunorMoon": { - sunOrMoon; + sunOrMoon }; case "getMissionNamespaceVariable": { - missionNamespace getVariable [_extraLogicName, _extraLogicData]; + missionNamespace getVariable [_extraLogicName, _extraLogicData] }; // not really needed default { - _extraLogicName; + _extraLogicName }; }; _allow = [_value,_extraLogicCond,_extraLogicData] call EPOCH_fnc_arrayToLogic;