Skip to content

Commit

Permalink
Merge pull request CleverRaven#68691 from sodisappointing/play_cull_h…
Browse files Browse the repository at this point in the history
…otkey

Prevent accidentally killing pets while playing with them.
  • Loading branch information
Maleclypse authored Oct 16, 2023
2 parents 338db40 + 03ea791 commit 356bfe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/monexamine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ bool monexamine::pet_menu( monster &z )
amenu.addentry( play_with_pet, true, 'y', _( "Play with %s" ), pet_name );
}
if( z.has_flag( mon_flag_CAN_BE_CULLED ) ) {
amenu.addentry( cull_pet, true, 'y', _( "Cull %s" ), pet_name );
amenu.addentry( cull_pet, true, 'k', _( "Cull %s" ), pet_name );
}
if( z.has_flag( mon_flag_MILKABLE ) ) {
amenu.addentry( milk, true, 'm', _( "Milk %s" ), pet_name );
Expand Down

0 comments on commit 356bfe5

Please sign in to comment.