Warn if transfering summoned items to/from a monster, or if giving an item to a monster with MF_HARD_RESET.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7803 c06c8d41-db1a-0410-9941-cceddc491573
PSE2BGMI3WPJ5HLD7S6KBRMESZYOLNOUSJWFRVAT2XR5JG3AEJPQC
if ((mon->flags & MF_HARD_RESET) && !(new_item.flags & ISFLAG_SUMMONED))
mprf(MSGCH_WARN, "WARNING: Monster has MF_HARD_RESET and all its "
"items will disappear when it does.");
else if ((new_item.flags & ISFLAG_SUMMONED) && !mon->is_summoned())
mprf(MSGCH_WARN, "WARNING: Item is summoned and will disappear when "
"the monster does.");