mirror of
https://codeberg.org/noisytoot/notnotdnethack.git
synced 2025-07-26 15:22:23 +01:00
Handle cloud glyphs in auto_describe instead of impossibling.
This commit is contained in:
parent
db1c9bfbeb
commit
52cfbde252
1 changed files with 2 additions and 0 deletions
|
@ -168,6 +168,8 @@ auto_describe(int cx, int cy)
|
||||||
} else if (glyph_is_monster(glyph)) {
|
} else if (glyph_is_monster(glyph)) {
|
||||||
/* takes care of pets, detected, ridden, and regular mons */
|
/* takes care of pets, detected, ridden, and regular mons */
|
||||||
sym = monsyms[(int)mons[glyph_to_mon(glyph)].mlet];
|
sym = monsyms[(int)mons[glyph_to_mon(glyph)].mlet];
|
||||||
|
} else if (glyph_is_cloud(glyph)) {
|
||||||
|
sym = showsyms[S_cloud];
|
||||||
} else if (glyph_is_swallow(glyph)) {
|
} else if (glyph_is_swallow(glyph)) {
|
||||||
sym = showsyms[glyph_to_swallow(glyph)+S_sw_tl];
|
sym = showsyms[glyph_to_swallow(glyph)+S_sw_tl];
|
||||||
} else if (glyph_is_invisible(glyph)) {
|
} else if (glyph_is_invisible(glyph)) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue