Core/Commands: Added missing hyperlink system.
Port From (https://github.com/TrinityCore/TrinityCore/commit/1f60e76b7f157af6a24fa3c962b59f3391b21e75) Port From (https://github.com/TrinityCore/TrinityCore/commit/f647ff68659ed6d8d414d20520507dd451c2cb8d)
This commit is contained in:
@@ -12,7 +12,7 @@ namespace Game.Chat
|
||||
class GMCommands
|
||||
{
|
||||
[Command("chat", RBACPermissions.CommandGmChat)]
|
||||
static bool HandleGMChatCommand(CommandHandler handler, bool? enableArg)
|
||||
static bool HandleGMChatCommand(CommandHandler handler, OptionalArg<bool> enableArg)
|
||||
{
|
||||
WorldSession session = handler.GetSession();
|
||||
if (session != null)
|
||||
@@ -160,7 +160,7 @@ namespace Game.Chat
|
||||
}
|
||||
|
||||
[Command("visible", RBACPermissions.CommandGmVisible)]
|
||||
static bool HandleGMVisibleCommand(CommandHandler handler, bool? visibleArg)
|
||||
static bool HandleGMVisibleCommand(CommandHandler handler, OptionalArg<bool> visibleArg)
|
||||
{
|
||||
Player _player = handler.GetSession().GetPlayer();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user