nsmryan / RustRoguelike

This Rust Roguelike is a Roguelike written in Rust.
17 stars 3 forks source link

Cannot pass turn in sneak mode #455

Closed MicroChasm closed 2 years ago

MicroChasm commented 2 years ago

you currently cannot pass a turn with ctrl pressed. This is true independent of the mode you were in for the previous move.

nsmryan commented 2 years ago

This is because pressing 5 with ctrl current causes an "interaction" with the current tile. This seems like the wrong behavior, but I will have to think about it a bit.

nsmryan commented 2 years ago

Thinking about it, interactions don't even work this way anymore- they are done in use-mode, not with ctrl. This is now fixed and the changed has been pushed.