diff options
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game.cpp b/src/game.cpp index 97427860..a424320e 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -656,7 +656,7 @@ void Game::handleInput() direction |= Being::RIGHT; } - player_node->walk(direction); + player_node->setWalkingDir(direction); // Attacking monsters if (keys[SDLK_LCTRL] || keys[SDLK_RCTRL] || |