diff options
-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); |