diff options
Diffstat (limited to 'src/localplayer.cpp')
-rw-r--r-- | src/localplayer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/localplayer.cpp b/src/localplayer.cpp index d5484ac3..f842042c 100644 --- a/src/localplayer.cpp +++ b/src/localplayer.cpp @@ -232,10 +232,10 @@ void LocalPlayer::walk(unsigned char dir) void LocalPlayer::setDestination(Uint16 x, Uint16 y) { // Only send a new message to the server when destination changes - if (x != destX || y != destY) + if (x != mDestX || y != mDestY) { - destX = x; - destY = y; + mDestX = x; + mDestY = y; char temp[3]; MessageOut outMsg(mNetwork); |