mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
Don't send to original player
This commit is contained in:
@@ -128,8 +128,9 @@ switch (_variable) do {
|
|||||||
case "RemoveObject": {
|
case "RemoveObject": {
|
||||||
PVDZE_obj_Remove = _arraytosend;
|
PVDZE_obj_Remove = _arraytosend;
|
||||||
{
|
{
|
||||||
if (isPlayer _x) then {
|
_pOwner = owner _x;
|
||||||
(owner _x) publicVariableClient "PVDZE_obj_Remove";
|
if (isPlayer _x && {_pOwner != _owner}) then {
|
||||||
|
_pOwner publicVariableClient "PVDZE_obj_Remove";
|
||||||
};
|
};
|
||||||
} forEach playableUnits;
|
} forEach playableUnits;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user