Skip to content

Commit

Permalink
make 'i' show inventory
Browse files Browse the repository at this point in the history
  • Loading branch information
NQNStudios authored and CelticMinstrel committed Feb 27, 2025
1 parent a862c36 commit 06abd20
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/game/boe.actions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2415,7 +2415,7 @@ void show_debug_help() {
}

// Non-comprehensive list of unused keys:
// chijklnoqvy @#$-_+[]{},.'"`\|;:
// chjklnoqvy @#$-_+[]{},.'"`\|;:
// We want to keep lower-case for normal gameplay.
void init_debug_actions() {
add_debug_action({'B'}, "Leave town", debug_leave_town);
Expand Down Expand Up @@ -2704,8 +2704,9 @@ bool handle_keystroke(const sf::Event& event, cFramerateLimiter& fps_limiter){
toggle_debug_mode();
break;

// 'z', Really? 'i' is not used
// 'z', Really?
case 'z':
case 'i':
show_inventory();
break;

Expand Down

0 comments on commit 06abd20

Please sign in to comment.