From 4dc938b7ff72818dd0bc8ba4bf84c09a89f751cb Mon Sep 17 00:00:00 2001 From: Lupus Date: Fri, 5 Jan 2007 11:52:21 +0000 Subject: fixed @go bug git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9617 54d463be-8e91-2dee-dedb-b68131a5f0ec --- Changelog-Trunk.txt | 1 + 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; -- cgit v1.2.3-70-g09d2