Skip to content

Commit

Permalink
Fix messages for service training firearms.
Browse files Browse the repository at this point in the history
  • Loading branch information
elunna committed Sep 24, 2023
1 parent 4888274 commit 537473c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/shk.c
Original file line number Diff line number Diff line change
Expand Up @@ -4626,7 +4626,7 @@ struct monst *shkp;
return 0;

if (not_fully_identified(uwep)) {
pline("%s examines %s.", mon_nam(shkp), doname(uwep));
pline("%s examines %s.", mon_nam(shkp), OBJ_DESCR(objects[uwep->otyp]));
if (rnd(15) <= ACURR(A_INT)) {
makeknown(uwep->otyp);
uwep->known = TRUE;
Expand All @@ -4636,7 +4636,7 @@ struct monst *shkp;
pline("Unfortunately, nothing new turns up.");
}

pline("%s trains you intensely in the way of %s.", doname(uwep), mon_nam(shkp));
pline("%s trains you intensely in the way of firearms.", mon_nam(shkp));
use_skill(weptype, required);
return 1;
}
Expand Down

0 comments on commit 537473c

Please sign in to comment.