[7032] Remove unused field from realm structure in realmd.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
zhenya 2009-01-05 14:32:55 +03:00 committed by VladimirMangos
parent 8ac2150b88
commit 5bf32dd62a
3 changed files with 1 additions and 3 deletions

View file

@ -48,7 +48,6 @@ void RealmList::UpdateRealm( uint32 ID, const std::string& name, const std::stri
Realm& realm = m_realms[name]; Realm& realm = m_realms[name];
realm.m_ID = ID; realm.m_ID = ID;
realm.name = name;
realm.icon = icon; realm.icon = icon;
realm.color = color; realm.color = color;
realm.timezone = timezone; realm.timezone = timezone;

View file

@ -28,7 +28,6 @@
/// Storage object for a realm /// Storage object for a realm
struct Realm struct Realm
{ {
std::string name;
std::string address; std::string address;
uint8 icon; uint8 icon;
uint8 color; uint8 color;

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "7031" #define REVISION_NR "7032"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__