From 009469f7fa3e98eba57189a464ef586f6e5bcc23 Mon Sep 17 00:00:00 2001 From: worldwidesorrow Date: Wed, 11 Dec 2019 20:49:16 -0600 Subject: [PATCH] Send the PV directly instead of drilling down the list of options. --- SQF/dayz_code/traps/beartrapsmoke.sqf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SQF/dayz_code/traps/beartrapsmoke.sqf b/SQF/dayz_code/traps/beartrapsmoke.sqf index 3db8c94cb..dc39fcd5e 100644 --- a/SQF/dayz_code/traps/beartrapsmoke.sqf +++ b/SQF/dayz_code/traps/beartrapsmoke.sqf @@ -60,7 +60,8 @@ _trigger = { if (_entity isKindOf "Animal") then { _entity setDamage 1; } else { - [_entity, "Legs", [_entity]] call server_sendToClient; + PVCDZ_plr_Legs = [_entity]; + (owner _entity) publicVariableClient "PVCDZ_plr_Legs"; }; };