Skip to content

Commit

Permalink
Suppress discovery message for firearms after they are known.
Browse files Browse the repository at this point in the history
  • Loading branch information
elunna committed Jul 27, 2023
1 parent e1263c5 commit 85b4a42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions hackem_changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

Version 1.2.0 (unreleased)

Suppress discovery message for firearms after they are known.
Indestructible items can't be destroyed in BoH explosions.
Fix: Vecna wasn't getting the Key of Chaos!
Fix: Lookup for skeleton key matched skeleton monster.
Expand Down
2 changes: 1 addition & 1 deletion src/dothrow.c
Original file line number Diff line number Diff line change
Expand Up @@ -1567,7 +1567,7 @@ struct obj *oldslot; /* for thrown-and-return used with !fixinv */
pline("The quivered ammo doesn't fit the firearm.");
gunning = FALSE;
}
if (gunning) {
if (gunning && !uwep->known) {
if (!Deaf)
pline("Boom!");
makeknown_msg(uwep->otyp);
Expand Down

0 comments on commit 85b4a42

Please sign in to comment.