From 5d759e7b5f36364a91717ace42e31fcaff7358e9 Mon Sep 17 00:00:00 2001 From: GhostIsSpooky <69561145+Salluci@users.noreply.github.com> Date: Mon, 23 Jan 2023 22:23:49 -0300 Subject: [PATCH] Zeus - Don't disembark group players on Garrison (#9130) --- addons/zeus/functions/fnc_moduleGarrison.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/zeus/functions/fnc_moduleGarrison.sqf b/addons/zeus/functions/fnc_moduleGarrison.sqf index ae0dd4292e..88ccdc36b2 100644 --- a/addons/zeus/functions/fnc_moduleGarrison.sqf +++ b/addons/zeus/functions/fnc_moduleGarrison.sqf @@ -51,7 +51,7 @@ switch (false) do { private _units = units _unit; // Make sure all units are disembarked { - if (vehicle _x != _x) then { + if (vehicle _x != _x && {!isPlayer _x}) then { moveOut _x; }; } forEach _units;