mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
Update object_setFixServer.sqf
missing commas
This commit is contained in:
@@ -10,17 +10,17 @@ if (_selection != "" and local _unit) then {
|
|||||||
_unit setVariable [_strH,_damage,true];
|
_unit setVariable [_strH,_damage,true];
|
||||||
if (_damage == 0) then {
|
if (_damage == 0) then {
|
||||||
if (isServer) then {
|
if (isServer) then {
|
||||||
[_unit,"repair"] call server_updateObject
|
[_unit,"repair"] call server_updateObject;
|
||||||
} else {
|
} else {
|
||||||
PVDZE_veh_Update = [_unit,"repair"];
|
PVDZE_veh_Update = [_unit,"repair"];
|
||||||
publicVariableServer "PVDZE_veh_Update";
|
publicVariableServer "PVDZE_veh_Update";
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
if (isServer) then {
|
if (isServer) then {
|
||||||
[_unit,"damage"] call server_updateObject
|
[_unit,"damage"] call server_updateObject;
|
||||||
} else {
|
} else {
|
||||||
PVDZE_veh_Update = [_unit,"damage"];
|
PVDZE_veh_Update = [_unit,"damage"];
|
||||||
publicVariableServer "PVDZE_veh_Update";
|
publicVariableServer "PVDZE_veh_Update";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user