Hmm so the code for Hezrou Stench (stench.py) seems to include the following lines checking for the Necklace of Adaptation, but I have a Necklace of Adaptation equipped on my character, but it does nothing to protect against Hezrou Stench. Does anyone know if this is a bug that can be fixed? elif has_necklace(critter): print critter, " unaffected" status = STATE_UNAFFECTED def has_necklace(critter): full = critter.item_worn_at(1) if full != OBJ_HANDLE_NULL and full.name == 6107: return 1 return 0