Misc cleanup

This commit is contained in:
Hondacrx
2025-12-08 15:25:55 -05:00
parent 6da69c8263
commit d4677ae863
5 changed files with 49 additions and 65 deletions
+1 -1
View File
@@ -190,7 +190,7 @@ namespace Game.Groups
m_raidDifficulty = Player.CheckLoadedRaidDifficultyID((Difficulty)field.Read<byte>(14));
m_legacyRaidDifficulty = Player.CheckLoadedLegacyRaidDifficultyID((Difficulty)field.Read<byte>(15));
m_masterLooterGuid = ObjectGuid.Create(HighGuid.Player, field.Read<ulong>(16));
m_masterLooterGuid = field.Read<ulong>(16) != 0 ? ObjectGuid.Create(HighGuid.Player, field.Read<ulong>(16)) : ObjectGuid.Empty;
m_pingRestriction = (RestrictPingsTo)field.Read<sbyte>(18);