diff options
author | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-06 10:32:10 +0000 |
---|---|---|
committer | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-06 10:32:10 +0000 |
commit | 6533057de1efe36a0c900076a1b4bf207b54994c (patch) | |
tree | a67795128e8c3f5c8d8c392165f828db9d50104c /src/map | |
parent | a9e29df778514bd1dca21b6a65595410733a0da1 (diff) | |
download | hercules-6533057de1efe36a0c900076a1b4bf207b54994c.tar.gz hercules-6533057de1efe36a0c900076a1b4bf207b54994c.tar.bz2 hercules-6533057de1efe36a0c900076a1b4bf207b54994c.tar.xz hercules-6533057de1efe36a0c900076a1b4bf207b54994c.zip |
Added Moscovia to the list of @go destinations
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12504 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/atcommand.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 85e551861..3a9f987cb 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -2178,6 +2178,7 @@ int atcommand_go(const int fd, struct map_session_data* sd, const char* command, { MAP_HUGEL, 96, 145 }, // 22=Hugel { MAP_RACHEL, 130, 110 }, // 23=Rachel { MAP_VEINS, 216, 123 }, // 24=Veins + { MAP_MOSCOVIA, 223, 184 }, // 25=Moscovia }; nullpo_retr(-1, sd); @@ -2205,7 +2206,7 @@ int atcommand_go(const int fd, struct map_session_data* sd, const char* command, clif_displaymessage(fd, " 15=Novice Grounds 16=Prison 17=Jawaii"); clif_displaymessage(fd, " 18=Ayothaya 19=Einbroch 20=Lighthalzen"); clif_displaymessage(fd, " 21=Einbech 22=Hugel 23=Rachel"); - clif_displaymessage(fd, " 24=Veins"); + clif_displaymessage(fd, " 24=Veins 25=Moscovia"); return -1; } @@ -2277,6 +2278,8 @@ int atcommand_go(const int fd, struct map_session_data* sd, const char* command, town = 23; } else if (strncmp(map_name, "veins", 3) == 0) { town = 24; + } else if (strncmp(map_name, "moscovia", 3) == 0) { + town = 25; } if (town >= 0 && town < ARRAYLENGTH(data)) |