fix walk again
This commit is contained in:
parent
5d0d1432ed
commit
132f9a00e4
|
@ -106,7 +106,7 @@ void Game::processInventoryChange(int slot, const ItemPtr& item)
|
||||||
|
|
||||||
void Game::walk(Otc::Direction direction)
|
void Game::walk(Otc::Direction direction)
|
||||||
{
|
{
|
||||||
if(!m_online || !m_localPlayer->canWalk(direction) || !checkBotProtection())
|
if(!m_online || !m_localPlayer->canWalk(direction) || (!checkBotProtection() && m_localPlayer->getNextWalkDirection() == Otc::InvalidDirection))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
cancelFollow();
|
cancelFollow();
|
||||||
|
|
Loading…
Reference in New Issue