mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
This prevents errors when upgrading 1051 databases that had plot or door
management installed.
See comments at:
fe9b8fdcb4
9 lines
222 B
Plaintext
9 lines
222 B
Plaintext
private ["_friends","_name"];
|
|
|
|
lbClear 7102;
|
|
_friends = TheDoor getVariable ["doorfriends",[]];
|
|
{
|
|
_name = _x select 1;
|
|
lbAdd [7102, if (typeName _name == "ARRAY") then {toString _name} else {_name}];
|
|
} forEach _friends;
|