killer messages
Incorporate various killer message grammar fixes suggested by <Someone>.
Mostly these deal with using the proper killer_format and prefix ("the" or
no "the") for unique and type_is_pname monsters, or death to to eating
their corpses.
One case is handled by a general fix to name_to_mon to allow it to deal
with "Croesus' corpse".
The pre-3.4.1 topten behavior for "starved to death" messages is also restored.
This commit is contained in:
@@ -221,7 +221,8 @@ choke(food) /* To a full belly all food is bad. (It.) */
|
||||
killer = food_xname(food, FALSE);
|
||||
if (food->otyp == CORPSE &&
|
||||
(mons[food->corpsenm].geno & G_UNIQ)) {
|
||||
killer = the(killer);
|
||||
if (!type_is_pname(&mons[food->corpsenm]))
|
||||
killer = the(killer);
|
||||
killer_format = KILLED_BY;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user