1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-05-09 16:55:25 +01:00

Handle cloud glyphs in auto_describe instead of impossibling.

This commit is contained in:
demogorgon22 2024-02-16 02:18:04 +00:00
parent db1c9bfbeb
commit 52cfbde252

View file

@ -168,6 +168,8 @@ auto_describe(int cx, int cy)
} else if (glyph_is_monster(glyph)) {
/* takes care of pets, detected, ridden, and regular mons */
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)) {
sym = showsyms[glyph_to_swallow(glyph)+S_sw_tl];
} else if (glyph_is_invisible(glyph)) {