Browse Source

Merge pull request #140 from 501st-Aux-Mod-Team/fix-stun-locality

Fix stun locality
Erliens 4 years ago
parent
commit
6fb91a4c07
1 changed files with 20 additions and 14 deletions
  1. 20 14
      addons - Copy/RD501_Main/functions/stun/stun.sqf

+ 20 - 14
addons - Copy/RD501_Main/functions/stun/stun.sqf

@@ -1,20 +1,26 @@
 
-_onHit = {
+// Runs only on the machine where the hit unit is local
+_fnc_onHit = {
 	params ["_unit", "_source", "_damage", "_instigator"];
+	["rd501_stun_onHit", [_unit, _source]] call CBA_fnc_globalEvent;
+};
 
-	{
-		private _mag = currentMagazine _source;
-		private _ammo = (configFile >> "CfgMagazines" >> _mag >> "ammo") call BIS_fnc_getCfgData;
-		private _stunDuration = (configFile >> "CfgAmmo" >> _ammo >> "RD501_stunDuration") call BIS_fnc_getCfgData;
+// Runs on the person who shot
+_fnc_stun = {
+	params["_unit", "_source"];
 
-		if (_stunDuration > 0.0) then
-		{
-			["ace_captives_setSurrendered" ,[_unit, true]] call CBA_fnc_globalEvent;
-			[{
-				["ace_captives_setSurrendered", [_this select 0, false]] call CBA_fnc_globalEvent;
-			}, [_unit], _stunDuration] call CBA_fnc_waitAndExecute;
+	private _mag = currentMagazine _source;
+	private _ammo = (configFile >> "CfgMagazines" >> _mag >> "ammo") call BIS_fnc_getCfgData;
+	private _stunDuration = (configFile >> "CfgAmmo" >> _ammo >> "RD501_stunDuration") call BIS_fnc_getCfgData;
 
-		};
-	} remoteExec ['call', _instigator];
+	if (_stunDuration > 0.0) then
+	{
+		["ace_captives_setSurrendered" ,[_unit, true]] call CBA_fnc_globalEvent;
+		[{
+			["ace_captives_setSurrendered", [_this select 0, false]] call CBA_fnc_globalEvent;
+		}, [_unit], _stunDuration] call CBA_fnc_waitAndExecute;
+	};
 };
-_handler = ["CAManBase", "Hit", _onHit] call CBA_fnc_addClassEventHandler;
+
+["CAManBase", "Hit", _fnc_onHit] call CBA_fnc_addClassEventHandler;
+["rd501_stun_onHit", _fnc_stun] call CBA_fnc_addEventHandler;