diff --git a/client/adventureMap/CAdvMapInt.cpp b/client/adventureMap/CAdvMapInt.cpp index 841d973d3..4a84176b6 100644 --- a/client/adventureMap/CAdvMapInt.cpp +++ b/client/adventureMap/CAdvMapInt.cpp @@ -49,6 +49,7 @@ #include "../../lib/mapping/CMap.h" #include "../../lib/UnlockGuard.h" #include "../../lib/TerrainHandler.h" +#include #define ADVOPT (conf.go()->ac) @@ -791,6 +792,12 @@ void CAdvMapInt::keyPressed(const SDL_Keycode & key) } return; } + case SDLK_LALT: + { + //fake mouse use to trigger onTileHovered() + GH.fakeMouseMove(); + return; + } default: { auto direction = keyToMoveDirection(key);