Fix group tags syntax error

This commit is contained in:
ebayShopper
2017-02-23 17:17:50 -05:00
parent e1340821e7
commit 221b8cc4b9
2 changed files with 2 additions and 2 deletions

View File

@@ -29,6 +29,6 @@ publicVariableServer "PVDZ_groupInvite";
systemChat format[localize "STR_EPOCH_INVITE_TO",name _recipient];
if (isNil "dayz_groupTags" or {scriptDone "dayz_groupTags"}) then {
if (isNil "dayz_groupTags" or {scriptDone dayz_groupTags}) then {
dayz_groupTags = execVM "\z\addons\dayz_code\groups\groupTags.sqf";
};

View File

@@ -28,7 +28,7 @@ if (!isNull _inviter) then {
[player] joinSilent (group _inviter);
if (count (units _oldGroup) == 0) then {deleteGroup _oldGroup;};
if (isNil "dayz_groupTags" or {scriptDone "dayz_groupTags"}) then {
if (isNil "dayz_groupTags" or {scriptDone dayz_groupTags}) then {
dayz_groupTags = execVM "\z\addons\dayz_code\groups\groupTags.sqf";
};