aboutsummaryrefslogtreecommitdiff
path: root/src/game/Guild.h
diff options
context:
space:
mode:
authorMachiavelli <none@none>2010-03-19 14:47:08 +0100
committerMachiavelli <none@none>2010-03-19 14:47:08 +0100
commita77ba0bf5621a4990ed123e78744dfaf78d9fe82 (patch)
tree739c92ae53e395e8876e0c1bc45bc78ad5ca5d9e /src/game/Guild.h
parent9d5049da94fb1f4f3e7ae27eb09bde7c28ed5cac (diff)
Fix SMSG_GUILD_INFO (/guildinfo command)
--HG-- branch : trunk
Diffstat (limited to 'src/game/Guild.h')
-rw-r--r--src/game/Guild.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/game/Guild.h b/src/game/Guild.h
index 891f959655e..1438689670c 100644
--- a/src/game/Guild.h
+++ b/src/game/Guild.h
@@ -302,9 +302,7 @@ class Guild
std::string const& GetMOTD() const { return MOTD; }
std::string const& GetGINFO() const { return GINFO; }
- uint32 GetCreatedYear() const { return m_CreatedYear; }
- uint32 GetCreatedMonth() const { return m_CreatedMonth; }
- uint32 GetCreatedDay() const { return m_CreatedDay; }
+ time_t GetCreatedDate() const { return m_CreatedDate; }
uint32 GetEmblemStyle() const { return m_EmblemStyle; }
uint32 GetEmblemColor() const { return m_EmblemColor; }
@@ -437,9 +435,7 @@ class Guild
uint64 m_LeaderGuid;
std::string MOTD;
std::string GINFO;
- uint32 m_CreatedYear;
- uint32 m_CreatedMonth;
- uint32 m_CreatedDay;
+ time_t m_CreatedDate;
uint32 m_EmblemStyle;
uint32 m_EmblemColor;