aboutsummaryrefslogtreecommitdiff
path: root/src/game/Guild.h
diff options
context:
space:
mode:
authormegamage <none@none>2009-01-03 11:06:51 -0600
committermegamage <none@none>2009-01-03 11:06:51 -0600
commit9438625a19c070ec20d392fa57f1de6a61b7b985 (patch)
treee4d7fc1ea493a8fb86bd4729b5c6940a2c771d27 /src/game/Guild.h
parenta1a52b710c6563105d1c24112b1fa2699f3fbdfe (diff)
[7015] Implement support -1 in item_template.stackable and item_template.maxcount fields. By VladimirMangos.
--HG-- branch : trunk
Diffstat (limited to 'src/game/Guild.h')
-rw-r--r--src/game/Guild.h4
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;