1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-09-27 13:48:15 +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); cell *c = whirlwind::jumpDestination(cwt.at);
if(c) centerover.at = c; if(c) centerover.at = c;
} }
targetRangedOrb(centerover.at, roKeyboard); targetRangedOrb(DIM == 3 ? mouseover : centerover.at, roKeyboard);
sym = 0; uni = 0; sym = 0; uni = 0;
} }
} }