Core/Guilds: Fixed loading of guild member logout time

Closes #27690
This commit is contained in:
Shauren
2022-01-30 11:57:19 +01:00
parent 72839e660e
commit ea82454932

View File

@@ -632,7 +632,7 @@ bool Guild::Member::LoadFromDB(Field* fields)
fields[18].GetUInt16(), // characters.zone
fields[19].GetUInt32(), // characters.account
0);
m_logoutTime = fields[20].GetUInt32(); // characters.logout_time
m_logoutTime = fields[20].GetUInt64(); // characters.logout_time
m_totalActivity = 0;
m_weekActivity = 0;
m_weekReputation = 0;