Browse Source

Fix hidden ! to be clear (dumb). Opfor now only get locked vehicles

m3ales 4 years ago
parent
commit
949927c159
1 changed files with 1 additions and 1 deletions
  1. 1 1
      addons - Copy/RD501_Main/XEH_postinit.sqf

+ 1 - 1
addons - Copy/RD501_Main/XEH_postinit.sqf

@@ -142,7 +142,7 @@ call macro_fnc_name(stun);
 {
 	private _idx = _x addEventHandler ["CuratorObjectPlaced", {
 		params ["_curator","_entity"];
-		if!(_entity isKindOf "Man" && side _entity == east) then {
+		if(!(_entity isKindOf "Man") && (side _entity) == east) then {
 			_entity allowCrewInImmobile true;
 			_entity setVehicleLock "LOCKED";
 		};