diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-10-21 03:38:14 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-10-21 03:38:14 +0000 |
commit | 04787d3f8e5502c2f33212f23ab6b549e8b953a3 (patch) | |
tree | f7a098328c47fa5fa1d6c1859cd4e1fc51d9fc80 /src/char_sql | |
parent | 04238bbdaf79e256a3dc7a8dd4253293e9610fc0 (diff) | |
download | hercules-04787d3f8e5502c2f33212f23ab6b549e8b953a3.tar.gz hercules-04787d3f8e5502c2f33212f23ab6b549e8b953a3.tar.bz2 hercules-04787d3f8e5502c2f33212f23ab6b549e8b953a3.tar.xz hercules-04787d3f8e5502c2f33212f23ab6b549e8b953a3.zip |
- Some minor cleanups
- Fixed the Homunc not spawning next to you after receiving it's data from the char-server.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9035 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/char_sql')
-rw-r--r-- | src/char_sql/char.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/char_sql/char.c b/src/char_sql/char.c index 83f3c93df..dd5b31770 100644 --- a/src/char_sql/char.c +++ b/src/char_sql/char.c @@ -3942,7 +3942,6 @@ void sql_config_read(const char *cfgName){ /* Kalaspuff, to get login_db */ }else if(strcmpi(w1,"lowest_gm_level")==0){
lowest_gm_level = atoi(w2);
ShowStatus("set lowest_gm_level : %s\n",w2);
- //support the import command, just like any other config
#endif
}else if(strcmpi(w1,"scdata_db")==0){
strcpy(scdata_db,w2);
@@ -3997,8 +3996,8 @@ void sql_config_read(const char *cfgName){ /* Kalaspuff, to get login_db */ strcpy(item_db2_db,w2);
} else if(strcmpi(w1,"connection_ping_interval")==0) {
connection_ping_interval = config_switch(w2);
-
#endif
+ //support the import command, just like any other config
}else if(strcmpi(w1,"import")==0){
sql_config_read(w2);
}
|