diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-05-01 05:55:06 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-05-01 05:55:06 +0000 |
commit | f1fd1e277edb4eec67380e378e486fe2756dbb7e (patch) | |
tree | 007e5ae005df4fe9ef59ba29074d86fe15217abe /src/common/mapindex.c | |
parent | 7b6da851f876885e3c1a5cd7ad0d364d77404bf0 (diff) | |
download | hercules-f1fd1e277edb4eec67380e378e486fe2756dbb7e.tar.gz hercules-f1fd1e277edb4eec67380e378e486fe2756dbb7e.tar.bz2 hercules-f1fd1e277edb4eec67380e378e486fe2756dbb7e.tar.xz hercules-f1fd1e277edb4eec67380e378e486fe2756dbb7e.zip |
* Removed auto-add feature from mapindex code, as map indexes are used for save data, thus need to be constant across server starts (since r4726).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14807 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/mapindex.c')
-rw-r--r-- | src/common/mapindex.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/common/mapindex.c b/src/common/mapindex.c index a1c86af97..be2913c69 100644 --- a/src/common/mapindex.c +++ b/src/common/mapindex.c @@ -128,18 +128,8 @@ unsigned short mapindex_name2id(const char* name) if (strcmp(indexes[i].name,map_name)==0) return i; } -#ifdef MAPINDEX_AUTOADD - if( mapindex_addmap(i,map_name) ) - { - ShowDebug("mapindex_name2id: Auto-added map \"%s\" to position %d\n", map_name, i); - return i; - } - ShowWarning("mapindex_name2id: Failed to auto-add map \"%s\" to position %d!\n", map_name, i); - return 0; -#else ShowDebug("mapindex_name2id: Map \"%s\" not found in index list!\n", map_name); return 0; -#endif } const char* mapindex_id2name(unsigned short id) |