From f1fc0df6eff93ea277bd5773ad2c21f7c76b4698 Mon Sep 17 00:00:00 2001 From: PabstMirror Date: Mon, 20 Mar 2023 13:18:57 -0500 Subject: [PATCH] Respawn - fix script error (#9166) --- addons/respawn/functions/fnc_updateRallypoint.sqf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/addons/respawn/functions/fnc_updateRallypoint.sqf b/addons/respawn/functions/fnc_updateRallypoint.sqf index 363e12972b..64e54e99ab 100644 --- a/addons/respawn/functions/fnc_updateRallypoint.sqf +++ b/addons/respawn/functions/fnc_updateRallypoint.sqf @@ -17,7 +17,8 @@ * Public: No */ -params ["_rallypoint", "_side", "_position"]; +params ["_rallypoint", "_side"]; +private _position = param [2, getpos _rallypoint]; if (!hasInterface) exitWith {};