diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/char/char.c | 2 | ||||
-rw-r--r-- | src/char_sql/char.c | 2 | ||||
-rw-r--r-- | src/map/atcommand.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/char/char.c b/src/char/char.c index 0e23f99ab..0cc15a462 100644 --- a/src/char/char.c +++ b/src/char/char.c @@ -4332,7 +4332,7 @@ int do_init(int argc, char **argv) { int i;
mapindex_init(); //Needed here for the start-point reading.
- start_point.map = mapindex_name2id("new_1-1.gat");
+ start_point.map = mapindex_name2id("new_zone01.gat");
char_config_read((argc < 2) ? CHAR_CONF_NAME : argv[1]);
char_lan_config_read((argc > 3) ? argv[3] : LOGIN_LAN_CONF_NAME);
diff --git a/src/char_sql/char.c b/src/char_sql/char.c index 3edc30c9c..1fbbf44aa 100644 --- a/src/char_sql/char.c +++ b/src/char_sql/char.c @@ -4203,7 +4203,7 @@ int do_init(int argc, char **argv){ //Read map indexes
mapindex_init();
- start_point.map = mapindex_name2id("new_1-1.gat");
+ start_point.map = mapindex_name2id("new_zone01.gat");
char_config_read((argc < 2) ? CHAR_CONF_NAME : argv[1]);
char_lan_config_read((argc > 3) ? argv[3] : LAN_CONF_NAME);
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index b8f1c6cab..74229a98a 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -3295,7 +3295,7 @@ int atcommand_go( { MAP_UMBALA, 89, 157 }, // 12=Umbala
{ MAP_NIFLHEIM, 21, 153 }, // 13=Niflheim
{ MAP_LOUYANG, 217, 40 }, // 14=Lou Yang
- { "new_1-1.gat", 53, 111 }, // 15=Training Grounds
+ { "new_zone01.gat", 53, 111 }, // 15=Training Grounds
{ MAP_JAIL, 23, 61 }, // 16=Prison
{ MAP_JAWAII, 249, 127 }, // 17=Jawaii
{ MAP_AYOTHAYA, 151, 117 }, // 18=Ayothaya
@@ -3376,7 +3376,7 @@ int atcommand_go( town = 13;
} else if (strncmp(map_name, "louyang.gat", 3) == 0) { // 3 first characters
town = 14;
- } else if (strncmp(map_name, "new_1-1.gat", 3) == 0 || // 3 first characters (or "newbies")
+ } else if (strncmp(map_name, "new_zone01.gat", 3) == 0 || // 3 first characters (or "newbies")
strncmp(map_name, "startpoint.gat", 3) == 0 || // name of the position (3 first characters)
strncmp(map_name, "begining.gat", 3) == 0) { // name of the position (3 first characters)
town = 15;
|