mirror of
https://github.com/azerothcore/mod-account-achievements
synced 2025-11-29 23:39:58 +08:00
Fix GetUInt8 to Get<uint8>.
This commit is contained in:
@@ -42,7 +42,7 @@ public:
|
||||
{
|
||||
Field* fields = result1->Fetch();
|
||||
|
||||
uint32 race = fields[1].GetUInt8();
|
||||
uint32 race = fields[1].Get<uint8>();
|
||||
|
||||
if ((Player::TeamIdForRace(race) == Player::TeamIdForRace(pPlayer->getRace())) || !limitrace)
|
||||
Guids.push_back(result1->Fetch()[0].GetUInt32());
|
||||
|
||||
Reference in New Issue
Block a user