summaryrefslogtreecommitdiff
path: root/src/localplayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/localplayer.cpp')
-rw-r--r--src/localplayer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/localplayer.cpp b/src/localplayer.cpp
index eb8d8164..49e5bfaa 100644
--- a/src/localplayer.cpp
+++ b/src/localplayer.cpp
@@ -259,7 +259,7 @@ void LocalPlayer::setGMLevel(int level)
}
-void LocalPlayer::nextStep(unsigned char dir = 0)
+void LocalPlayer::nextTile(unsigned char dir = 0)
{
if (Net::getNetworkType() == ServerInfo::EATHENA)
{
@@ -290,7 +290,7 @@ void LocalPlayer::nextStep(unsigned char dir = 0)
}
- Player::nextStep();
+ Player::nextTile();
}
else
{
@@ -569,7 +569,7 @@ void LocalPlayer::setWalkingDir(int dir)
}
else if (mAction == WALK && (Net::getNetworkType() == ServerInfo::MANASERV))
{
- nextStep(dir);
+ nextTile(dir);
}
}
@@ -630,7 +630,7 @@ void LocalPlayer::startWalking(unsigned char dir)
}
}
else
- nextStep(dir);
+ nextTile(dir);
}
void LocalPlayer::stopWalking(bool sendToServer)