diff options
author | joschiwald <joschiwald.trinity@gmail.com> | 2015-02-17 21:08:28 +0100 |
---|---|---|
committer | joschiwald <joschiwald.trinity@gmail.com> | 2015-02-17 21:08:28 +0100 |
commit | 2d40d3678d725d5c08bc49d10994bc2bd7a70b4d (patch) | |
tree | ef5676180d7e2e7aaee73661286634b760d0ca82 /src/server/game/Loot/LootMgr.h | |
parent | d56d318c7f0861db9723f1d89423935e69ad52b9 (diff) |
Core/Packets: fixed crash on SMSG_ATTACKSTOP and fixed init of ItemInstance
Diffstat (limited to 'src/server/game/Loot/LootMgr.h')
-rw-r--r-- | src/server/game/Loot/LootMgr.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/server/game/Loot/LootMgr.h b/src/server/game/Loot/LootMgr.h index 75ea54a9dc5..a14bcb50107 100644 --- a/src/server/game/Loot/LootMgr.h +++ b/src/server/game/Loot/LootMgr.h @@ -35,11 +35,6 @@ namespace WorldPackets { class LootResponse; } - - namespace Item - { - struct ItemInstance; - } } enum RollType @@ -155,8 +150,7 @@ struct LootStoreItem { } bool Roll(bool rate) const; // Checks if the entry takes it's chance (at loot generation) - bool IsValid(LootStore const& store, uint32 entry) const; - // Checks correctness of values + bool IsValid(LootStore const& store, uint32 entry) const; // Checks correctness of values }; struct LootItem |