From 932eecc040511455ab031eee0e74eba403a90bfe Mon Sep 17 00:00:00 2001 From: Philipp Sehmisch Date: Tue, 13 Feb 2007 15:01:30 +0000 Subject: Fixed the _M/_F username bug. --- src/main.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index 364b8a61..3e7576aa 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -421,6 +421,12 @@ void accountLogin(Network *network, LoginData *loginData) // Clear the password, avoids auto login when returning to login loginData->password = ""; + //remove _M or _F from username after a login for registration purpose + if (loginData->registerLogin) + { + loginData->registerLogin = false; + loginData->username = loginData->username.substr(0, loginData->username.length() - 2); + } // TODO This is not the best place to save the config, but at least better // than the login gui window if (loginData->remember) { @@ -538,6 +544,7 @@ int main(int argc, char *argv[]) loginData.hostname = config.getValue("host", "server.themanaworld.org"); loginData.port = (short)config.getValue("port", 0); loginData.remember = config.getValue("remember", 0); + loginData.registerLogin = false; SDLNet_Init(); Network *network = new Network(); -- cgit v1.2.3-70-g09d2