Changes requested

I fixed what was requested of me. Built it, tested it - all functions are working.
This commit is contained in:
ThePenguinMan96
2025-08-04 17:55:29 -07:00
parent 683c6e39e4
commit ab345b8847
5 changed files with 11 additions and 12 deletions

View File

@@ -108,7 +108,7 @@ bool TameAction::Execute(Event event)
// Handle "tame abandon" command to give up your current pet
if (mode == "abandon")
{
return abandonPet();
return AbandonPet();
}
// Try to process the command based on mode and value
@@ -476,7 +476,7 @@ bool TameAction::CreateAndSetPet(uint32 creatureEntry)
return true;
}
bool TameAction::abandonPet()
bool TameAction::AbandonPet()
{
// Get the bot player and its current pet (if any)
Player* bot = botAI->GetBot();