Clothing part of Inventory

This is awkward – any way to disable it? I want the player to discover it when examining herself.

I tried some things that didn’t work:

Rule for deciding whether inventory includes the dress: it does not.
Rule for writing a paragraph about the player:
now the dress is mentioned.
Rule for writing a paragraph about inventory:
now the dress is mentioned.
Rule for writing a taking inventory:
now the dress is mentioned.

Advise appreciated, thanks!

Found it in the documentation:

Instead of taking inventory: say "You're carrying [a list of things carried by the player]."

Hm. Though now it’s not describing things that are in containers that the player carries. Can I make it do that too?

Yes, see chapter 11.14 and example 174 in that chapter.

Instead of taking inventory: if the number of things carried by the player is 0, say "You are empty-handed." instead; now all things carried by the player are marked for listing; say "You are carrying "; list the contents of the player, tersely, as a sentence, including contents, listing marked items only; say "."

Perfect. Thanks!