mirror of
https://codeberg.org/noisytoot/notnotdnethack.git
synced 2025-05-14 19:45:04 +01:00
Uvuudaum tweak:
Give special messages for peaceful uvuudaum.
This commit is contained in:
parent
a36f9a7cf3
commit
033b4a4ae9
2 changed files with 5 additions and 2 deletions
|
@ -137,7 +137,7 @@ lookat(x, y, buf, monbuf)
|
|||
((mtmp->isshk && accurate)
|
||||
? "tail of " : "tail of a ") : "",
|
||||
(mtmp->mtame && accurate) ? "tame " :
|
||||
(mtmp->mpeaceful && accurate) ? "peaceful " : "",
|
||||
(mtmp->mpeaceful && accurate) ? (mtmp->data==&mons[PM_UVUUDAUM]) ? "meditating " : "peaceful " : "",
|
||||
name);
|
||||
if (u.ustuck == mtmp)
|
||||
Strcat(buf, (Upolyd && sticks(youmonst.data)) ?
|
||||
|
|
|
@ -439,7 +439,10 @@ register struct monst *mtmp;
|
|||
}
|
||||
#endif
|
||||
}
|
||||
else if (mtmp->mpeaceful) Strcat(info, ", peaceful");
|
||||
else if (mtmp->mpeaceful){
|
||||
if(mtmp->data == &mons[PM_UVUUDAUM]) Strcat(info, ", in contemplative meditation");
|
||||
else Strcat(info, ", peaceful");
|
||||
}
|
||||
else if (mtmp->mtraitor) Strcat(info, ", traitor");
|
||||
else if (mtmp->mferal) Strcat(info, ", feral");
|
||||
if (mtmp->meating) Strcat(info, ", eating");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue