diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Server/Packets/LootPackets.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/game/Server/Packets/LootPackets.h b/src/server/game/Server/Packets/LootPackets.h index ba78d1488a3..02e367b1fd7 100644 --- a/src/server/game/Server/Packets/LootPackets.h +++ b/src/server/game/Server/Packets/LootPackets.h @@ -64,16 +64,16 @@ namespace WorldPackets ObjectGuid LootObj; ObjectGuid Owner; - uint8 Threshold = 2; // Most common value + uint8 Threshold = 2; // Most common value, 2 = Uncommon uint8 LootMethod = 0; uint8 AcquireReason = 0; uint8 FailureReason = 17; // Most common value - uint32 Coins = 0; + uint32 Coins = 0; std::vector<LootItem> Items; std::vector<LootCurrency> Currencies; bool PersonalLooting = false; bool Acquired = false; - bool AELooting = false; + bool AELooting = false; }; struct LootRequest |