mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-18 11:25:42 +00:00
fix(Core/Guild): Guild bank handling issues (#10724)
* fix(Core/Guild): Guild bank right issues * and slots too
This commit is contained in:
@@ -279,9 +279,9 @@ public:
|
||||
void SetSlots(uint32 _slots) { slots = _slots; }
|
||||
void SetRights(uint8 _rights) { rights = _rights; }
|
||||
|
||||
int8 GetTabId() const { return tabId; }
|
||||
int32 GetSlots() const { return slots; }
|
||||
int8 GetRights() const { return rights; }
|
||||
uint8 GetTabId() const { return tabId; }
|
||||
uint32 GetSlots() const { return slots; }
|
||||
uint8 GetRights() const { return rights; }
|
||||
|
||||
private:
|
||||
uint8 tabId;
|
||||
|
||||
Reference in New Issue
Block a user