diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-24 23:58:40 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-24 23:58:40 +0000 |
commit | ec3f633cdaa6b4b0661400d2bada620f58987916 (patch) | |
tree | e1592c145f65a804d507d4e83bec3f875e2057f9 /src/map/pc.c | |
parent | ea40b015cb26db701961714237380e2e64525ae7 (diff) | |
download | hercules-ec3f633cdaa6b4b0661400d2bada620f58987916.tar.gz hercules-ec3f633cdaa6b4b0661400d2bada620f58987916.tar.bz2 hercules-ec3f633cdaa6b4b0661400d2bada620f58987916.tar.xz hercules-ec3f633cdaa6b4b0661400d2bada620f58987916.zip |
- Fixed Warp Portal.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5740 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 75ce05530..d76f83337 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -3226,7 +3226,7 @@ int pc_walktodir(struct map_session_data *sd,int step) to_x += dir_x;
to_y += dir_y;
}
- unit_walktoxy(&sd->bl, sd->to_x, sd->to_y, 1);
+ unit_walktoxy(&sd->bl, to_x, to_y, 1);
return 1;
}
|