diff options
author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2021-03-02 01:34:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-02 01:34:20 +0100 |
commit | 28f1dc5c0cc0d3ce26bb64bfc4475329fb5166c2 (patch) | |
tree | 147c9b86f29ae601e37a7dde53570dcac3552b9d /src/server/game/AI/CreatureAI.cpp | |
parent | dbefa17a534500522a174e9906d8923445c16e79 (diff) |
refactor(Core): replace NULL with nullptr (#4593)
Diffstat (limited to 'src/server/game/AI/CreatureAI.cpp')
-rw-r--r-- | src/server/game/AI/CreatureAI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/AI/CreatureAI.cpp b/src/server/game/AI/CreatureAI.cpp index c75bcce8ff..35a9b8991c 100644 --- a/src/server/game/AI/CreatureAI.cpp +++ b/src/server/game/AI/CreatureAI.cpp @@ -26,12 +26,12 @@ void CreatureAI::OnCharmed(bool /*apply*/) AISpellInfoType* UnitAI::AISpellInfo; AISpellInfoType* GetAISpellInfo(uint32 i) { return &CreatureAI::AISpellInfo[i]; } -void CreatureAI::Talk(uint8 id, WorldObject const* whisperTarget /*= NULL*/) +void CreatureAI::Talk(uint8 id, WorldObject const* whisperTarget /*= nullptr*/) { sCreatureTextMgr->SendChat(me, id, whisperTarget); } -void CreatureAI::DoZoneInCombat(Creature* creature /*= NULL*/, float maxRangeToNearestTarget /* = 50.0f*/) +void CreatureAI::DoZoneInCombat(Creature* creature /*= nullptr*/, float maxRangeToNearestTarget /* = 50.0f*/) { if (!creature) creature = me; |