fix github issue #1413 - mimic feedback for gold
Issue reported by ars3niy: if a mimic was given the shape of a gold piece it gets reported as 2 gold pieces but the message was |A gold pieces appears next to you. Avoid article "A" prefix, and use plural verb "appear" instead of singular "appears", yielding |Gold pieces appear next to you. Fixes #1413
This commit is contained in:
@@ -1485,8 +1485,10 @@ makemon(
|
||||
}
|
||||
if (what) {
|
||||
set_msg_xy(mtmp->mx, mtmp->my);
|
||||
Norep("%s%s appears%s%c", what,
|
||||
Norep("%s%s %s%s%c", what,
|
||||
exclaim ? " suddenly" : "",
|
||||
/* 'what' might be "gold pieces" so need plural verb */
|
||||
vtense(what, "appear"),
|
||||
next2u(x, y) ? " next to you"
|
||||
: (distu(x, y) <= (BOLT_LIM * BOLT_LIM)) ? " close by"
|
||||
: "",
|
||||
|
||||
Reference in New Issue
Block a user