summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/mapindex.h3
-rw-r--r--src/map/atcommand.c6
2 files changed, 8 insertions, 1 deletions
diff --git a/src/common/mapindex.h b/src/common/mapindex.h
index 854669ea6..36e49072d 100644
--- a/src/common/mapindex.h
+++ b/src/common/mapindex.h
@@ -36,6 +36,9 @@ extern char mapindex_cfgfile[80];
#define MAP_JAIL "sec_pri"
#define MAP_NOVICE "new_1-1"
#define MAP_MOSCOVIA "moscovia"
+#define MAP_BRASILIS "brasilis"
+#define MAP_MANUK "manuk"
+#define MAP_SPLENDIDE "splendide"
const char* mapindex_getmapname(const char* string, char* output);
const char* mapindex_getmapname_ext(const char* string, char* output);
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index 9290f844a..03c92c07a 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -2279,6 +2279,9 @@ ACMD_FUNC(go)
{ MAP_RACHEL, 130, 110 }, // 23=Rachel
{ MAP_VEINS, 216, 123 }, // 24=Veins
{ MAP_MOSCOVIA, 223, 184 }, // 25=Moscovia
+ { MAP_BRASILIS, 182, 239 }, // 26=Brasilis
+ { MAP_MANUK, 282, 138 }, // 27=Manuk
+ { MAP_SPLENDIDE, 197, 176 }, // 28=Splendide
};
nullpo_retr(-1, sd);
@@ -2306,7 +2309,8 @@ ACMD_FUNC(go)
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 25=Moscovia");
+ clif_displaymessage(fd, " 24=Veins 25=Moscovia 26=Brasilis");
+ clif_displaymessage(fd, " 27=Manuk 28=Splendide");
return -1;
}