浏览代码

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

m3ales 4 年之前
父节点
当前提交
949927c159
共有 1 个文件被更改,包括 1 次插入1 次删除
  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";
 		};