diff options
-rw-r--r-- | Changelog-Trunk.txt | 1 | ||||
-rw-r--r-- | src/map/atcommand.c | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 8fe442ad6..36e0ce80b 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2007/01/04 + * Fixed old @go bug (it ignored einbech) [Lupus] * Added Au{R}oN's updated version of the effect list. * Completed adding of the new cities to @go. > that function is ugly and needs a complete rewrite, asap. diff --git a/src/map/atcommand.c b/src/map/atcommand.c index b6895af08..06fa629e5 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -3414,13 +3414,13 @@ int atcommand_go( } else if (strncmp(map_name, "ayothaya.gat", 2) == 0 || // 2 first characters strncmp(map_name, "ayotaya.gat", 2) == 0) { // writing error (2 first characters) town = 18; - } else if (strncmp(map_name, "einbroch.gat", 3) == 0 || // 3 first characters - strncmp(map_name, "ainbroch.gat", 3) == 0) { // writing error (3 first characters) + } else if (strncmp(map_name, "einbroch.gat", 5) == 0 || // 5 first characters + strncmp(map_name, "ainbroch.gat", 5) == 0) { // writing error (5 first characters) town = 19; } else if (strncmp(map_name, "lighthalzen.gat", 3) == 0 || // 3 first characters strncmp(map_name, "reichthalzen.gat", 3) == 0) { // 'alternative' name (3 first characters) town = 20; - } else if (strncmp(map_name, "einbech.gat", 5) == 0) { // 5 first characters + } else if (strncmp(map_name, "einbech.gat", 3) == 0) { // 3 first characters town = 21; } else if (strncmp(map_name, "hugel.gat", 3) == 0) { // 3 first characters town = 22; |