summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog-SVN.txt1
-rw-r--r--src/map/map.c3
2 files changed, 2 insertions, 2 deletions
diff --git a/Changelog-SVN.txt b/Changelog-SVN.txt
index d2db0e50a..f1241f134 100644
--- a/Changelog-SVN.txt
+++ b/Changelog-SVN.txt
@@ -1,6 +1,7 @@
Date Added
03/17
+ * Re-fixed compile error in map.c -- sorry ^^; [celest]
* trade.c fixed possibility of STORAGE+TRADE spooffing dupe [Lupus]
Now, on accepting trade your active Storage window closes. (Either Common or Guils Storage)
thanx to Sergey for the exploit test and report
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);