Send the PV directly instead of drilling down the list of options.

This commit is contained in:
worldwidesorrow
2019-12-11 20:47:23 -06:00
committed by GitHub
parent bcc5b631cb
commit 8d15eda6b4

View File

@@ -59,7 +59,8 @@ _trigger = {
if (_entity isKindOf "Animal") then { if (_entity isKindOf "Animal") then {
_entity setDamage 1; _entity setDamage 1;
} else { } else {
[_entity, "Legs", [_entity]] call server_sendToClient; PVCDZ_plr_Legs = [_entity];
(owner _entity) publicVariableClient "PVCDZ_plr_Legs";
}; };
}; };