Use joinSilent instead of join

This commit is contained in:
ebaydayz
2016-10-30 13:54:55 -04:00
parent 6d8afc9d32
commit abb0475d28
9 changed files with 13 additions and 10 deletions

View File

@@ -11,6 +11,6 @@ dayz_groupDisbandThread = _group spawn {
//Wait for response from server to confirm group finished updating in DB
waitUntil {!isNil "dayz_groupDisbanded"};
{[_x] join grpNull} count (units _this);
{[_x] joinSilent grpNull} count (units _this);
deleteGroup _this;
};