diff options
| author | Shauren <shauren.trinity@gmail.com> | 2025-07-11 17:47:14 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2025-07-11 17:47:14 +0200 |
| commit | fbbcc3167053950d2000cd88bb7d98266491768f (patch) | |
| tree | 170a59a57cf001b16b8e4545d6deda486220dd05 /src/server/scripts/EasternKingdoms/SunwellPlateau | |
| parent | cbb532e4bec11d59f2072441a43b7c797de6d16d (diff) | |
Core/Misc: Simplify LinkedListHead::isEmpty and rename to empty to fit standard container naming
Diffstat (limited to 'src/server/scripts/EasternKingdoms/SunwellPlateau')
| -rw-r--r-- | src/server/scripts/EasternKingdoms/SunwellPlateau/instance_sunwell_plateau.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/EasternKingdoms/SunwellPlateau/instance_sunwell_plateau.cpp b/src/server/scripts/EasternKingdoms/SunwellPlateau/instance_sunwell_plateau.cpp index 55bd29222fb..f4d5a8a0e0d 100644 --- a/src/server/scripts/EasternKingdoms/SunwellPlateau/instance_sunwell_plateau.cpp +++ b/src/server/scripts/EasternKingdoms/SunwellPlateau/instance_sunwell_plateau.cpp @@ -97,7 +97,7 @@ class instance_sunwell_plateau : public InstanceMapScript { Map::PlayerList const& players = instance->GetPlayers(); - if (!players.isEmpty()) + if (!players.empty()) { for (Map::PlayerList::const_iterator itr = players.begin(); itr != players.end(); ++itr) { |
