From 1ec930639fcb289875bf5dda68ae288acfeb04f5 Mon Sep 17 00:00:00 2001 From: Emagi Date: Sun, 1 Dec 2024 11:14:13 -0500 Subject: [PATCH] fix name pet and rename to function --- source/WorldServer/Commands/Commands.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/source/WorldServer/Commands/Commands.cpp b/source/WorldServer/Commands/Commands.cpp index 9404ed1..e9a9bae 100644 --- a/source/WorldServer/Commands/Commands.cpp +++ b/source/WorldServer/Commands/Commands.cpp @@ -8420,9 +8420,7 @@ void Commands::Command_PetName(Client* client, Seperator* sep) */ void Commands::Command_NamePet(Client* client, Seperator* sep) { - PrintSep(sep, "COMMAND_NAME_PET"); - LogWrite(MISC__TODO, 1, "Command", "TODO-Command: Name Pet Command"); - client->Message(CHANNEL_COLOR_YELLOW, "Pets are not yet implemented."); + Command_PetName(client, sep); } /* @@ -8434,9 +8432,7 @@ void Commands::Command_NamePet(Client* client, Seperator* sep) */ void Commands::Command_Rename(Client* client, Seperator* sep) { - PrintSep(sep, "COMMAND_RENAME"); - LogWrite(MISC__TODO, 1, "Command", "TODO-Command: Rename Pet Command"); - client->Message(CHANNEL_COLOR_YELLOW, "Pets are not yet implemented."); + Command_PetName(client, sep); } /*