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

f key no longer works outside of normal

This commit is contained in:
Zeno Rogue 2020-01-02 16:52:23 +01:00
parent 0d2e660fa4
commit 66e040bbc9

View File

@ -114,7 +114,7 @@ void get_b4_distance() {
bool trailer_handleKey(int sym, int uni) {
if(sym == 'f') {
if(sym == 'f' && (cmode & sm::NORMAL)) {
keys_on = !keys_on;
println(hlog, "keys_on = ", keys_on);
return true;