From 3ba3fe82d2bb229545dfbc13f5241d858f4c66aa Mon Sep 17 00:00:00 2001 From: Jacob Schmidt Date: Sun, 25 May 2025 14:22:12 -0500 Subject: [PATCH] fix: Add missing comma in fnc_hostage.sqf This commit fixes a missing comma in the `fnc_hostage.sqf` file. The comma was missing between the `_cbrnZone` and `_equipmentRewards` parameters, which could have caused issues with task execution. --- addons/task/functions/fnc_hostage.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/task/functions/fnc_hostage.sqf b/addons/task/functions/fnc_hostage.sqf index da68aff..9f2bb06 100644 --- a/addons/task/functions/fnc_hostage.sqf +++ b/addons/task/functions/fnc_hostage.sqf @@ -46,7 +46,7 @@ params [ ["_endSuccess", false, [false]], ["_endFail", false, [false]], ["_time", -1, [0]], - ["_cbrnZone", "", [""]] + ["_cbrnZone", "", [""]], ["_equipmentRewards", [], [[]]], ["_supplyRewards", [], [[]]], ["_weaponRewards", [], [[]]],