refactor(Core/Object): adds consistency in the use of type object check (#19671)
This commit is contained in:
parent
61f3a631c3
commit
643362d697
189 changed files with 783 additions and 775 deletions
|
|
@ -81,7 +81,7 @@ public:
|
|||
else if (banishTimer <= diff)
|
||||
{
|
||||
Unit* temp = me->GetVictim();
|
||||
if (temp && temp->GetTypeId() == TYPEID_PLAYER)
|
||||
if (temp && temp->IsPlayer())
|
||||
{
|
||||
DoCast(temp, SPELL_BANISHED_SHATTRATH_A);
|
||||
banishTimer = 9000;
|
||||
|
|
@ -148,7 +148,7 @@ public:
|
|||
else if (banishTimer <= diff)
|
||||
{
|
||||
Unit* temp = me->GetVictim();
|
||||
if (temp && temp->GetTypeId() == TYPEID_PLAYER)
|
||||
if (temp && temp->IsPlayer())
|
||||
{
|
||||
DoCast(temp, SPELL_BANISHED_SHATTRATH_S);
|
||||
banishTimer = 9000;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue