From 4ccc2c45cff55f6f9230609a90de1aecc4f08a25 Mon Sep 17 00:00:00 2001 From: Ghostrider-GRG- Date: Fri, 20 Apr 2018 07:46:28 -0400 Subject: [PATCH] Added a missing bracket, removed an excess one. --- .../Compiles/Missions/GMS_fnc_missionSpawner.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/@GMS/addons/custom_server/Compiles/Missions/GMS_fnc_missionSpawner.sqf b/@GMS/addons/custom_server/Compiles/Missions/GMS_fnc_missionSpawner.sqf index 9f3c1f2..1406c35 100644 --- a/@GMS/addons/custom_server/Compiles/Missions/GMS_fnc_missionSpawner.sqf +++ b/@GMS/addons/custom_server/Compiles/Missions/GMS_fnc_missionSpawner.sqf @@ -80,9 +80,9 @@ if (isNil "_chancePara") then switch (toLower (_aiDifficultyLevel)) do { case "blue": {_chancePara = blck_chanceParaBlue}; - case "red": {_chancePara = blck_chanceParaRed}}; + case "red": {_chancePara = blck_chanceParaRed}; case "green": {_chancePara = blck_chanceParaGreen}; - case "orange": {_chancePara = blck_chanceParaOrange; + case "orange": {_chancePara = blck_chanceParaOrange}; default {_chancePara = 0}; }; };