diff options
Diffstat (limited to 'src/localplayer.cpp')
-rw-r--r-- | src/localplayer.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/localplayer.cpp b/src/localplayer.cpp index 29a2a54b..89302ea2 100644 --- a/src/localplayer.cpp +++ b/src/localplayer.cpp @@ -203,7 +203,8 @@ void LocalPlayer::walk(unsigned char dir) if (dx && dy && !mMap->getWalk(x + dx, y + dy)) dx = 0; - if (dx || dy) + // Walk to where the player can actually go + if ((dx || dy) && mMap->getWalk(x + dx, y + dy)) { setDestination(x + dx, y + dy); } @@ -217,10 +218,6 @@ void LocalPlayer::walk(unsigned char dir) void LocalPlayer::setDestination(Uint16 x, Uint16 y) { - // Check if we can walk there - if (!mMap->getWalk(x, y)) - return; - char temp[3]; MessageOut outMsg(mNetwork); set_coordinates(temp, x, y, direction); |