aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Groups/Group.cpp
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2014-10-22 00:35:00 +0200
committerShauren <shauren.trinity@gmail.com>2025-09-29 00:15:41 +0200
commitd2da9ce4ef7c7b0c138ed9d6f233e89bf7260c9b (patch)
tree022a8f7b4ab5470c789be5cfacece4a332851af6 /src/server/game/Groups/Group.cpp
parent7eab6a791ae1c039de67a80ff8bd125bf69f7ba4 (diff)
Core/Groups: Use full guid for group lookup
(cherry picked from commit e7d9830a06aa23c49b93053c4debb98d1bbcea69)
Diffstat (limited to 'src/server/game/Groups/Group.cpp')
-rw-r--r--src/server/game/Groups/Group.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/server/game/Groups/Group.cpp b/src/server/game/Groups/Group.cpp
index 2c6867bc9fa..d450c0d5eca 100644
--- a/src/server/game/Groups/Group.cpp
+++ b/src/server/game/Groups/Group.cpp
@@ -1141,12 +1141,12 @@ void Group::GroupLoot(Loot* loot, WorldObject* pLootedObject)
if (Creature* creature = pLootedObject->ToCreature())
{
creature->m_groupLootTimer = 60000;
- creature->lootingGroupLowGUID = GetLowGUID();
+ creature->lootingGroupLowGUID = GetGUID();
}
else if (GameObject* go = pLootedObject->ToGameObject())
{
go->m_groupLootTimer = 60000;
- go->lootingGroupLowGUID = GetLowGUID();
+ go->lootingGroupLowGUID = GetGUID();
}
}
}
@@ -1207,12 +1207,12 @@ void Group::GroupLoot(Loot* loot, WorldObject* pLootedObject)
if (Creature* creature = pLootedObject->ToCreature())
{
creature->m_groupLootTimer = 60000;
- creature->lootingGroupLowGUID = GetLowGUID();
+ creature->lootingGroupLowGUID = GetGUID();
}
else if (GameObject* go = pLootedObject->ToGameObject())
{
go->m_groupLootTimer = 60000;
- go->lootingGroupLowGUID = GetLowGUID();
+ go->lootingGroupLowGUID = GetGUID();
}
}
else
@@ -1288,12 +1288,12 @@ void Group::NeedBeforeGreed(Loot* loot, WorldObject* lootedObject)
if (Creature* creature = lootedObject->ToCreature())
{
creature->m_groupLootTimer = 60000;
- creature->lootingGroupLowGUID = GetLowGUID();
+ creature->lootingGroupLowGUID = GetGUID();
}
else if (GameObject* go = lootedObject->ToGameObject())
{
go->m_groupLootTimer = 60000;
- go->lootingGroupLowGUID = GetLowGUID();
+ go->lootingGroupLowGUID = GetGUID();
}
}
else
@@ -1357,12 +1357,12 @@ void Group::NeedBeforeGreed(Loot* loot, WorldObject* lootedObject)
if (Creature* creature = lootedObject->ToCreature())
{
creature->m_groupLootTimer = 60000;
- creature->lootingGroupLowGUID = GetLowGUID();
+ creature->lootingGroupLowGUID = GetGUID();
}
else if (GameObject* go = lootedObject->ToGameObject())
{
go->m_groupLootTimer = 60000;
- go->lootingGroupLowGUID = GetLowGUID();
+ go->lootingGroupLowGUID = GetGUID();
}
}
else