diff options
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/map.c b/src/map/map.c index 938f46582..cfd50137a 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -3345,12 +3345,12 @@ int map_config_read(char *cfgName) if (strcmpi(w1, "use_grf") == 0) enable_grf = config_switch(w2); else - if (strcmpi(w1, "import") == 0) - map_config_read(w2); - else if (strcmpi(w1, "console_msg_log") == 0) console_msg_log = atoi(w2);//[Ind] else + if (strcmpi(w1, "import") == 0) + map_config_read(w2); + else ShowWarning("Unknown setting '%s' in file %s\n", w1, cfgName); } |