|
@@ -277,13 +277,14 @@ struct storage_data {
|
|
|
struct item items[MAX_STORAGE];
|
|
|
};
|
|
|
|
|
|
+/// Guild storgae struct
|
|
|
struct guild_storage {
|
|
|
- bool dirty;
|
|
|
- int guild_id;
|
|
|
- short storage_amount;
|
|
|
- struct item items[MAX_GUILD_STORAGE];
|
|
|
- bool locked;
|
|
|
- int opened; /// Holds the char_id that open the storage
|
|
|
+ bool dirty; ///< Dirty status, need to be saved
|
|
|
+ int guild_id; ///< Guild ID
|
|
|
+ short storage_amount; ///< Amount of item on storage
|
|
|
+ struct item items[MAX_GUILD_STORAGE]; ///< Item entries
|
|
|
+ bool locked; ///< If locked, can't use storage when item bound retrieval
|
|
|
+ uint32 opened; ///< Holds the char_id that open the storage
|
|
|
};
|
|
|
|
|
|
struct s_pet {
|