diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/common/mapindex.h | 2 | ||||
-rw-r--r-- | src/map/atcommand.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/common/mapindex.h b/src/common/mapindex.h index 9f5d35329..3a9ff3537 100644 --- a/src/common/mapindex.h +++ b/src/common/mapindex.h @@ -35,7 +35,7 @@ extern char mapindex_cfgfile[80]; #define MAP_RACHEL "rachel" #define MAP_VEINS "veins" #define MAP_JAIL "sec_pri" -#define MAP_NOVICE "new_zone01" +#define MAP_NOVICE "new_1-1" #define MAP_MOSCOVIA "moscovia" const char* mapindex_getmapname(const char* string, char* output); diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 2c80db37c..3338a3b04 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -2251,7 +2251,7 @@ int atcommand_go(const int fd, struct map_session_data* sd, const char* command, town = 13; } else if (strncmp(map_name, "louyang", 3) == 0) { town = 14; - } else if (strncmp(map_name, "new_zone01", 3) == 0 || + } else if (strncmp(map_name, "new_1-1", 3) == 0 || strncmp(map_name, "startpoint", 3) == 0 || strncmp(map_name, "begining", 3) == 0) { town = 15; |