SkyrimLL / SkLLmods

[Obsolete] Legacy repo for Personal compilation of Skyrim mods created for LL.
28 stars 19 forks source link

Bimbo Curse is paused when full body parasites are equipped #1301

Closed SkyrimLL closed 2 years ago

SkyrimLL commented 2 years ago

From this comment

Hormones adds these conditions to block the progress of the Bimbo curse if full body parasites are equipped.

    if (StorageUtil.GetIntValue(BimboActor, "_SLP_toggleChaurusQueenSkin") == 1)\
    || (StorageUtil.GetIntValue(BimboActor, "_SLP_toggleChaurusQueenArmor") == 1)\
    || (StorageUtil.GetIntValue(BimboActor, "_SLP_toggleChaurusQueenBody") == 1)\
    || (StorageUtil.GetIntValue(BimboActor, "_SLP_toggleLivingArmor") == 1)\
    || (StorageUtil.GetIntValue(BimboActor, "_SLP_toggleTentacleMonster") == 1)

Frankly, I can't remember why I felt that was necessary at the time. I should have better documented my code. Obviously I didn't.

I can turn that check off for the next version and see if that introduces real issues.