lookAround output order

Sorry for the increasingly idiotic questions, but I’m looking everywhere for something I can’t seem to find: How can I switch around the order in which actors’ specialDesc and objects get shown when using the “Look” command.

Right now, when I “Look”, the game gives me first a list of items found in the room, and then whatever I specified in the present NPCs’ specialDesc. Simply, I need that backwards: actors first, items second.

Override the specialDescBeforeContents property. If you want it on all actors, then:

modify Actor
   specialDescBeforeContents = true
;

D’oh, no wonder I couldn’t find it, I was mucking around in the wrong place.

Thanks!