1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-17 18:59:59 +00:00

3d:: the 't' key now targets the same target as the mouse

This commit is contained in:
Zeno Rogue 2019-03-10 18:39:17 +01:00
parent 9bd01c485d
commit 7bdea22d2a

View File

@ -400,7 +400,7 @@ void handleKeyNormal(int sym, int uni) {
cell *c = whirlwind::jumpDestination(cwt.at);
if(c) centerover.at = c;
}
targetRangedOrb(centerover.at, roKeyboard);
targetRangedOrb(DIM == 3 ? mouseover : centerover.at, roKeyboard);
sym = 0; uni = 0;
}
}