mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-25 01:20:37 +00:00
f key no longer works outside of normal
This commit is contained in:
parent
0d2e660fa4
commit
66e040bbc9
@ -114,7 +114,7 @@ void get_b4_distance() {
|
|||||||
|
|
||||||
bool trailer_handleKey(int sym, int uni) {
|
bool trailer_handleKey(int sym, int uni) {
|
||||||
|
|
||||||
if(sym == 'f') {
|
if(sym == 'f' && (cmode & sm::NORMAL)) {
|
||||||
keys_on = !keys_on;
|
keys_on = !keys_on;
|
||||||
println(hlog, "keys_on = ", keys_on);
|
println(hlog, "keys_on = ", keys_on);
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user