summaryrefslogtreecommitdiff
path: root/src/login
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-12-16 13:50:50 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-12-16 13:50:50 +0000
commita2bd3711edd890864a0fef46f3fcda4f2492b740 (patch)
treee76a5e2bc3d900bce6bbd4946751b93cc0316d61 /src/login
parent4a1f2d69c82645fbf3c2504177bda19ffc230523 (diff)
downloadhercules-a2bd3711edd890864a0fef46f3fcda4f2492b740.tar.gz
hercules-a2bd3711edd890864a0fef46f3fcda4f2492b740.tar.bz2
hercules-a2bd3711edd890864a0fef46f3fcda4f2492b740.tar.xz
hercules-a2bd3711edd890864a0fef46f3fcda4f2492b740.zip
Some more guild code reformatting (moved do_init_guild() to the end of guild.c, cleaned up and documented the castle/guild/member lookup functions, fixed a compilation warning...)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11917 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/login')
-rw-r--r--src/login/login.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/login/login.c b/src/login/login.c
index b3726bad2..714eb178b 100644
--- a/src/login/login.c
+++ b/src/login/login.c
@@ -743,12 +743,12 @@ int mmo_auth_init(void)
ShowStatus("mmo_auth_init: %d accounts read in %s,\n", auth_num, account_filename);
if( GM_count == 0 )
- ShowStatus(" of which is no GM account, and ");
+ ShowStatus(" of which is no GM account, and \n");
else
if( GM_count == 1 )
- ShowStatus(" of which is 1 GM account, and ");
+ ShowStatus(" of which is 1 GM account, and \n");
else
- ShowStatus(" of which is %d GM accounts, and ", GM_count);
+ ShowStatus(" of which is %d GM accounts, and \n", GM_count);
if( server_count == 0 )
ShowStatus(" no server account ('S').\n");