summaryrefslogtreecommitdiff
path: root/src/net/logindata.h
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2011-05-26 17:09:37 -0600
committerJared Adams <jaxad0127@gmail.com>2011-05-26 17:47:37 -0600
commit1b7652146d9e529193e9a1c23512fcc405031e90 (patch)
treef2d79a4e3c3ffbcd008e860918df99a2e633bb87 /src/net/logindata.h
parent8766ae676d2f6b1642bf80f0b8dbe62a93ced2f7 (diff)
downloadmana-client-1b7652146d9e529193e9a1c23512fcc405031e90.tar.gz
mana-client-1b7652146d9e529193e9a1c23512fcc405031e90.tar.bz2
mana-client-1b7652146d9e529193e9a1c23512fcc405031e90.tar.xz
mana-client-1b7652146d9e529193e9a1c23512fcc405031e90.zip
tmwAthena supports 9 characters per account
Diffstat (limited to 'src/net/logindata.h')
-rw-r--r--src/net/logindata.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/logindata.h b/src/net/logindata.h
index dc2ef52b..4d8fc043 100644
--- a/src/net/logindata.h
+++ b/src/net/logindata.h
@@ -31,7 +31,7 @@ class LoginData
public:
LoginData()
{
- resetCharacterSlots();
+ characterSlots = 3;
}
std::string username;
@@ -50,11 +50,11 @@ public:
unsigned short characterSlots; /**< The number of character slots */
/**
- * Initialize character slots to 3 for TmwAthena compatibility
+ * Initialize character slots to 3 for backwards compatibility
*/
void resetCharacterSlots()
{
- characterSlots = 3; // Default value, used for TmwAthena.
+ characterSlots = 3;
}
void clear()