I've looked into the script (PKRF_DA11Cannibalism_00EE5C3), the magic effects (DA11NamiraBlessingEffect, Regenerate Health : HealRealMult, Fortify Health: Health) and spells (DA11CannibalismAbility, DA11CannibalismAbility02), only the perk (DA11Cannibalism) entries 'Feed' looks to be linked to this. I've yet to find the restriction within the papyrus fragment, which notifies me of the code to limit it to humanoid specific actors:
Game.GetPlayer().StartCannibal(akTargetRef as Actor)
DA11CannibalismAbility.Cast(Game.GetPlayer(), Game.GetPlayer())
DA11CannibalismAbility02.Cast(Game.GetPlayer(), Game.GetPlayer())
;Game.GetPlayer().AddSpell(DA11CannibalismAbility)
;Game.GetPlayer().AddSpell(DA11CannibalismAbility02, abVerbose= false)
The only piece I can figure is related to the activation on only humanoids is (akTargetRef as Actor) but wouldn't Actor indicate all actors (that's unique to the creation kit now, isn't it)? Anyway, if anyone can point me in the right direction here, I'd be much appreciative. Thanks and have a great day now!