diff options
Diffstat (limited to 'src/game/Guild.h')
-rw-r--r-- | src/game/Guild.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Guild.h b/src/game/Guild.h index f51ba5a6d27..f56e80c2b85 100644 --- a/src/game/Guild.h +++ b/src/game/Guild.h @@ -220,12 +220,12 @@ struct GuildBankTab struct GuildItemPosCount { - GuildItemPosCount(uint8 _slot, uint8 _count) : slot(_slot), count(_count) {} + GuildItemPosCount(uint8 _slot, uint32 _count) : slot(_slot), count(_count) {} bool isContainedIn(std::vector<GuildItemPosCount> const& vec) const; uint8 slot; - uint8 count; + uint32 count; }; typedef std::vector<GuildItemPosCount> GuildItemPosCountVec; |