Files
nethack/include
Ingo Paschke 87a0bdf26c display: fix off-by-one in glyph_is_normal_piletop_obj
glyph_is_normal_object includes its boundary slot
GLYPH_OBJ_OFF + FIRST_OBJECT - 1 via >=, but its piletop sibling
glyph_is_normal_piletop_obj used > and excluded the matching
GLYPH_OBJ_PILETOP_OFF + FIRST_OBJECT - 1 slot.  That leaves
exactly one glyph (the would-be G_piletop_generic_venom) matching
neither the piletop-generic nor the piletop-normal predicate, so
parse_id never builds a name for it and --dumpglyphnames emits a
blank line for the slot.

Change > to >= so the two ranges are inclusive on the same side.
--dumpglyphnames now produces (8009) G_piletop_generic_venom.
2026-05-25 17:06:24 +02:00
..
2022-02-04 11:01:20 -05:00
2025-05-25 20:38:17 -04:00
2026-05-22 12:24:32 -04:00
2026-05-24 18:30:46 -04:00
2026-05-01 09:12:37 -04:00
2026-05-24 18:30:46 -04:00
2026-05-01 09:12:37 -04:00
2026-05-02 00:19:08 -04:00
2024-09-06 13:08:07 -07:00
2026-05-02 00:19:08 -04:00
2026-04-26 12:34:02 -04:00
2026-05-02 19:26:05 -04:00
2025-05-25 20:38:17 -04:00
2026-04-26 13:21:18 -04:00
2026-05-01 09:12:37 -04:00
2026-04-26 12:34:02 -04:00
2026-05-15 21:58:51 -04:00
2026-04-26 12:34:02 -04:00
2026-05-01 09:12:37 -04:00
2026-05-02 10:45:29 -04:00