| 334 | } |
| 335 | |
| 336 | void |
| 337 | deferred_decor( |
| 338 | boolean setup) /* True: deferring, False: catching up */ |
| 339 | { |
| 340 | if (!flags.mention_decor) { |
| 341 | iflags.defer_decor = FALSE; |
| 342 | } else if (setup) { |
| 343 | iflags.defer_decor = TRUE; |
| 344 | } else { |
| 345 | (void) describe_decor(); |
| 346 | iflags.defer_decor = FALSE; |
| 347 | } |
| 348 | } |
| 349 | |
| 350 | /* handle 'mention_decor' (when walking onto a dungeon feature such as |
| 351 | stairs or altar, describe it even if it isn't covered up by an object) */ |
no test coverage detected