diff options
-rw-r--r-- | Changelog-SVN.txt | 1 | ||||
-rw-r--r-- | src/map/map.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog-SVN.txt b/Changelog-SVN.txt index 4647f89d5..53923722a 100644 --- a/Changelog-SVN.txt +++ b/Changelog-SVN.txt @@ -1,6 +1,7 @@ Date Added 03/16 + * map.c fixed compilation error [Lupus] * Updated jA's dummy socket to mod1137 [celest] * Added jA's ddos protection system -- check packet_athena.conf [celest] * Moved stall_time's reading from inter_athena.conf to packet_athena.conf diff --git a/src/map/map.c b/src/map/map.c index 3a6a29fde..1bea08249 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -2901,7 +2901,7 @@ int inter_config_read(char *cfgName) 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); |