Fixed @rura between maps on more then one map server. (r12483)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@12483 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
Kevin 2008-04-04 22:50:43 +00:00
parent 165bac9140
commit 51d31f56bd
2 changed files with 2 additions and 1 deletions

View File

@ -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. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2008/04/04 2008/04/04
* Fixed @rura between maps on more then one map server. (r12483) [Kevin]
* Update to Auth Glitch fix: moved unit_free_pc back to where it was * Update to Auth Glitch fix: moved unit_free_pc back to where it was
- and updated it so unit_free_pc just tells the script to end - and updated it so unit_free_pc just tells the script to end
- (not hard delete). (r12481) [Kevin] - (not hard delete). (r12481) [Kevin]

View File

@ -431,7 +431,7 @@ int atcommand_mapmove(const int fd, struct map_session_data* sd, const char* com
if (mapindex) if (mapindex)
m = map_mapindex2mapid(mapindex); m = map_mapindex2mapid(mapindex);
if (!mapindex || m < 0) { if (!mapindex) { // m < 0 means on different server! [Kevin]
clif_displaymessage(fd, msg_txt(1)); // Map not found. clif_displaymessage(fd, msg_txt(1)); // Map not found.
return -1; return -1;
} }