Skip to content

Commit

Permalink
Fixed notank filter not working
Browse files Browse the repository at this point in the history
  • Loading branch information
davidonete committed Oct 30, 2023
1 parent 14fcfa7 commit b804a1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playerbot/ChatFilter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class RoleChatFilter : public ChatFilter
if (melee && ai->IsRanged(bot, inGroup))
return "";

if (tank || dps || heal || ranged || melee || noheal || nodps || nodps)
if (tank || dps || heal || ranged || melee || noheal || nodps || notank)
return ChatFilter::Filter(message);

return message;
Expand Down

0 comments on commit b804a1e

Please sign in to comment.