aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts/Outland
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2025-07-11 17:51:49 +0200
committerShauren <shauren.trinity@gmail.com>2025-07-11 17:51:49 +0200
commitf4c0ede7269bf0ecaba4a1259e0aca949f45af59 (patch)
treefe5002777b55fab89a158a4c9fe504c3674f6e64 /src/server/scripts/Outland
parentfbbcc3167053950d2000cd88bb7d98266491768f (diff)
Core/Misc: Rename LinkedListHead::getSize to size to fit standard container naming
Diffstat (limited to 'src/server/scripts/Outland')
-rw-r--r--src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_morogrim_tidewalker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_morogrim_tidewalker.cpp b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_morogrim_tidewalker.cpp
index 24ee3e052b0..c9736fcacbd 100644
--- a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_morogrim_tidewalker.cpp
+++ b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_morogrim_tidewalker.cpp
@@ -142,7 +142,7 @@ struct boss_morogrim_tidewalker : public BossAI
void JustEngagedWith(Unit* who) override
{
- Playercount = me->GetMap()->GetPlayers().getSize();
+ Playercount = me->GetMap()->GetPlayers().size();
Talk(SAY_AGGRO);
_JustEngagedWith(who);
}