mirror of
https://github.com/edubart/otclient.git
synced 2025-12-22 16:27:10 +01:00
Fix #577 dash will now fire onWalk (with isDash parameter).
Also added missing client versions.
This commit is contained in:
@@ -648,7 +648,7 @@ bool Game::walk(Otc::Direction direction)
|
||||
|
||||
m_localPlayer->stopAutoWalk();
|
||||
|
||||
g_lua.callGlobalField("g_game", "onWalk", direction);
|
||||
g_lua.callGlobalField("g_game", "onWalk", direction, false);
|
||||
|
||||
forceWalk(direction);
|
||||
m_lastWalkDir = direction;
|
||||
@@ -713,6 +713,8 @@ bool Game::dashWalk(Otc::Direction direction)
|
||||
return false;
|
||||
}
|
||||
|
||||
g_lua.callGlobalField("g_game", "onWalk", direction, true);
|
||||
|
||||
forceWalk(direction);
|
||||
m_dashTimer.restart();
|
||||
m_lastWalkDir = direction;
|
||||
|
||||
Reference in New Issue
Block a user