Skip to content

Commit

Permalink
Bot feedback: Allow bots to properly talk in raid chat again.
Browse files Browse the repository at this point in the history
  • Loading branch information
mostlikely4r committed Nov 29, 2024
1 parent abe7a32 commit cd0f184
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playerbot/PlayerbotAI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3164,7 +3164,7 @@ bool PlayerbotAI::SayToParty(std::string msg)

bool PlayerbotAI::SayToRaid(std::string msg)
{
if (!bot->GetGroup() || bot->GetGroup()->IsRaidGroup())
if (!bot->GetGroup() || !bot->GetGroup()->IsRaidGroup())
{
return false;
}
Expand Down

0 comments on commit cd0f184

Please sign in to comment.