diff options
author | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-03-17 05:16:03 +0000 |
---|---|---|
committer | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-03-17 05:16:03 +0000 |
commit | 5f4b632f3a99d56870ce1b58a7f72d13dabfc5af (patch) | |
tree | dc8233ec7d72780e03930885729c81783b92514e /src/map/map.c | |
parent | de9953f09ca1be9c28b7b5d1ed313ebc50014ad6 (diff) | |
download | hercules-5f4b632f3a99d56870ce1b58a7f72d13dabfc5af.tar.gz hercules-5f4b632f3a99d56870ce1b58a7f72d13dabfc5af.tar.bz2 hercules-5f4b632f3a99d56870ce1b58a7f72d13dabfc5af.tar.xz hercules-5f4b632f3a99d56870ce1b58a7f72d13dabfc5af.zip |
Re-fixed compile error in map.c
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1240 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/map/map.c b/src/map/map.c index 1bea08249..066427111 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -2899,9 +2899,8 @@ int inter_config_read(char *cfgName) //support the import command, just like any other config if(strcmpi(w1,"import")==0){ inter_config_read(w2); - } #ifndef TXT_ONLY - else if(strcmpi(w1,"item_db_db")==0){ + } else if(strcmpi(w1,"item_db_db")==0){ strcpy(item_db_db,w2); } else if(strcmpi(w1,"mob_db_db")==0){ strcpy(mob_db_db,w2); |