simplify issuing urgent messages
Change custompline(URGENT_MESSAGE, mesg, ...); calls to new urgent_pline(mesg, ...);
This commit is contained in:
15
src/mhitu.c
15
src/mhitu.c
@@ -1838,12 +1838,11 @@ doseduce(struct monst *mon)
|
||||
}
|
||||
|
||||
naked = (!uarmc && !uarmf && !uarmg && !uarms && !uarmh && !uarmu);
|
||||
custompline(URGENT_MESSAGE,
|
||||
"%s %s%s.", Who,
|
||||
Deaf ? "seems to murmur into your ear"
|
||||
: naked ? "murmurs sweet nothings into your ear"
|
||||
: "murmurs in your ear",
|
||||
naked ? "" : ", while helping you undress");
|
||||
urgent_pline("%s %s%s.", Who,
|
||||
Deaf ? "seems to murmur into your ear"
|
||||
: naked ? "murmurs sweet nothings into your ear"
|
||||
: "murmurs in your ear",
|
||||
naked ? "" : ", while helping you undress");
|
||||
mayberem(mon, Who, uarmc, cloak_simple_name(uarmc));
|
||||
if (!uarmc)
|
||||
mayberem(mon, Who, uarm, suit_simple_name(uarm));
|
||||
@@ -1894,9 +1893,9 @@ doseduce(struct monst *mon)
|
||||
adjalign(1);
|
||||
|
||||
/* by this point you have discovered mon's identity, blind or not... */
|
||||
custompline(URGENT_MESSAGE,
|
||||
urgent_pline(
|
||||
"Time stands still while you and %s lie in each other's arms...",
|
||||
noit_mon_nam(mon));
|
||||
noit_mon_nam(mon));
|
||||
/* 3.6.1: a combined total for charisma plus intelligence of 35-1
|
||||
used to guarantee successful outcome; now total maxes out at 32
|
||||
as far as deciding what will happen; chance for bad outcome when
|
||||
|
||||
Reference in New Issue
Block a user