diff options
author | Mogadischu <cgnad@live.de> | 2015-02-13 18:31:50 +0000 |
---|---|---|
committer | Duarte Duarte <dnpd.dd@gmail.com> | 2015-02-13 18:32:36 +0000 |
commit | bc0c0ae2a334ee87df726c25b833e38a0c874614 (patch) | |
tree | 96bca61e912521a85ea64db5cfe3824ba86c93b1 /src/server/game/Guilds/GuildMgr.h | |
parent | 69104cfa2a8d04af7738bf427d0c35063b3a3cb4 (diff) |
Core/Guild: Updated and enabled most previously implemented guild and petition related packets
Merged from https://github.com/Mogadischu/TrinityCore/commits/guild
Signed-off-by: Duarte Duarte <dnpd.dd@gmail.com>
Diffstat (limited to 'src/server/game/Guilds/GuildMgr.h')
-rw-r--r-- | src/server/game/Guilds/GuildMgr.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/server/game/Guilds/GuildMgr.h b/src/server/game/Guilds/GuildMgr.h index 4753194546c..c5f1dbf49a6 100644 --- a/src/server/game/Guilds/GuildMgr.h +++ b/src/server/game/Guilds/GuildMgr.h @@ -39,7 +39,6 @@ public: Guild* GetGuildByName(std::string const& guildName) const; std::string GetGuildNameById(ObjectGuid::LowType guildId) const; - void LoadGuildXpForLevel(); void LoadGuildRewards(); void LoadGuilds(); @@ -53,7 +52,6 @@ public: ObjectGuid::LowType GenerateGuildId(); void SetNextGuildId(ObjectGuid::LowType Id) { NextGuildId = Id; } - uint64 GetXPForGuildLevel(uint8 level) const; std::vector<GuildReward> const& GetGuildRewards() const { return GuildRewards; } void ResetTimes(bool week); @@ -61,7 +59,6 @@ protected: typedef std::unordered_map<ObjectGuid::LowType, Guild*> GuildContainer; ObjectGuid::LowType NextGuildId; GuildContainer GuildStore; - std::vector<uint64> GuildXPperLevel; std::vector<GuildReward> GuildRewards; }; |