diff options
author | Eugenio Favalli <elvenprogrammer@gmail.com> | 2006-05-02 21:30:17 +0000 |
---|---|---|
committer | Eugenio Favalli <elvenprogrammer@gmail.com> | 2006-05-02 21:30:17 +0000 |
commit | 3297165f99f0dac7a453f180e1bef05782da2c6e (patch) | |
tree | 7d8bbd4ad75622c7c7c95f3406902c9e9a81108c | |
parent | 8049693e39758f1e902920b07f1d7fc903aadafc (diff) | |
download | mana-client-3297165f99f0dac7a453f180e1bef05782da2c6e.tar.gz mana-client-3297165f99f0dac7a453f180e1bef05782da2c6e.tar.bz2 mana-client-3297165f99f0dac7a453f180e1bef05782da2c6e.tar.xz mana-client-3297165f99f0dac7a453f180e1bef05782da2c6e.zip |
Fixed the delay last move bug.
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | src/localplayer.cpp | 2 |
2 files changed, 9 insertions, 5 deletions
@@ -1,13 +1,17 @@ -2006-03-25 Eugenio Favalli <elvenprogrammer@gmail.com> +2006-05-02 Eugenio Favalli <elvenprogrammer@gmail.com> + + * src/localplayer.cpp: Fixed the delay last move bug. + +2006-04-29 Eugenio Favalli <elvenprogrammer@gmail.com> * data/graphics/tiles/cave.png: Added tiles by yosuhara. 2006-04-28 Philipp Sehmisch <tmw@crushnet.org> * data/graphics/tiles/Woodland_ground.png: Graphical update of the - woodland tileset. Paths improved, and tiles that were redunant replaced by - new dirt tiles. - * data/maps/new_9.1.tmx.gz: modified because of changes in the tileset + woodland tileset. Paths improved, and tiles that were redunant replaced + by new dirt tiles. + * data/maps/new_9.1.tmx.gz: modified because of changes in the tileset layout (no new server sided walkmap required) * data/graphics/sprites/monster11.png: improved the shading of the mushroom monster diff --git a/src/localplayer.cpp b/src/localplayer.cpp index d418ac7d..3d12c7c1 100644 --- a/src/localplayer.cpp +++ b/src/localplayer.cpp @@ -219,7 +219,7 @@ void LocalPlayer::setDestination(Uint16 x, Uint16 y) { char temp[3]; MessageOut outMsg(mNetwork); - set_coordinates(temp, mX, mY, mDirection); + set_coordinates(temp, x, y, mDirection); outMsg.writeInt16(0x0085); outMsg.writeString(temp, 3); |