refactor(Core/Object): adds consistency in the use of type object check (#19671)

This commit is contained in:
Grimdhex 2024-08-25 14:57:37 +02:00 committed by GitHub
parent 61f3a631c3
commit 643362d697
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
189 changed files with 783 additions and 775 deletions

View file

@ -184,7 +184,7 @@ public:
void MoveInLineOfSight(Unit* who) override
{
if (!sayGreet && who->GetTypeId() == TYPEID_PLAYER)
if (!sayGreet && who->IsPlayer())
{
Talk(SAY_GREET);
sayGreet = true;