diff options
author | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-04 12:42:29 +0000 |
---|---|---|
committer | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-04 12:42:29 +0000 |
commit | 17b06add8252a7b6513080354f4bcb4c45e18902 (patch) | |
tree | b962494d9a085ac5ea4f65e9bfbeaad4fa112b7c /src/map | |
parent | 4ddc672d0ac90e3173d9b7dea6d76c6b369ec2a8 (diff) | |
download | hercules-17b06add8252a7b6513080354f4bcb4c45e18902.tar.gz hercules-17b06add8252a7b6513080354f4bcb4c45e18902.tar.bz2 hercules-17b06add8252a7b6513080354f4bcb4c45e18902.tar.xz hercules-17b06add8252a7b6513080354f4bcb4c45e18902.zip |
Fixed a little bug in Kevin's commit (r12473)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12475 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/chrif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/chrif.c b/src/map/chrif.c index 36f57a892..239880f88 100644 --- a/src/map/chrif.c +++ b/src/map/chrif.c @@ -401,7 +401,7 @@ int chrif_changemapserverack(int account_id, int login_id1, int login_id2, int c clif_changemapserver(node->sd, map_index, x, y, ntohl(ip), ntohs(port)); //Free session data from this map server [Kevin] - unit_free_pc(sd); + unit_free_pc(node->sd); //Player has been saved already, remove him from memory. [Skotlex] chrif_auth_delete(account_id, char_id, ST_MAPCHANGE); |