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

This commit is contained in:
worldwidesorrow
2019-12-11 20:49:16 -06:00
committed by GitHub
parent f5bd489273
commit 009469f7fa

View File

@@ -60,7 +60,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";
}; };
}; };