1eca51b follow-up, nuke command.permission from orbit; it was only duplicating data already stored in the core.

Port From (https://github.com/TrinityCore/TrinityCore/commit/46d4e2fa8378eed414c07eb161a19b772c474735)
This commit is contained in:
hondacrx
2022-06-09 16:27:15 -04:00
parent 8edba61e49
commit ed79f93c7b
48 changed files with 223 additions and 276 deletions
+3 -4
View File
@@ -61,12 +61,12 @@ namespace Game.Chat
{
value = default;
if (Hyperlink.TryParse(out value, type, args))
return true;
if (args.IsAtEnd())
return false;
if (Hyperlink.TryParse(out value, type, args))
return true;
if (type.IsEnum)
type = type.GetEnumUnderlyingType();
@@ -269,6 +269,5 @@ namespace Game.Chat
return null;
}
}
}