From 6ef2ff60d214acd5bf4adf5f28487fe6303b9d8b Mon Sep 17 00:00:00 2001 From: dikbutdagrate <73856869+Tjudge1@users.noreply.github.com> Date: Sat, 8 Nov 2025 17:21:00 -0500 Subject: [PATCH] bug fix: bogeyman and nightmares Added missing interaction token. -- Fixes the issue of bogeyman and nightmares attacking their masters when summoned. --- vanilla_procedural/scripts/generators/interactions/secret.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vanilla_procedural/scripts/generators/interactions/secret.lua b/vanilla_procedural/scripts/generators/interactions/secret.lua index 4a43625..02d4571 100644 --- a/vanilla_procedural/scripts/generators/interactions/secret.lua +++ b/vanilla_procedural/scripts/generators/interactions/secret.lua @@ -249,6 +249,7 @@ interactions.secrets.necromancer=function(idx,sph) [IE_TARGET:B] [IE_IMMEDIATE] [IE_CREATURE_CASTE_FLAG:NIGHT_CREATURE_BOGEYMAN] + [IE_MAKE_PET_IF_POSSIBLE] [IE_TIME_RANGE:200:300] ]]) end @@ -264,6 +265,7 @@ interactions.secrets.necromancer=function(idx,sph) [IE_TARGET:B] [IE_IMMEDIATE] [IE_CREATURE_CASTE_FLAG:NIGHT_CREATURE_NIGHTMARE] + [IE_MAKE_PET_IF_POSSIBLE] [IE_TIME_RANGE:200:300] ]]) end @@ -348,4 +350,4 @@ interactions.secrets.necromancer=function(idx,sph) local spheres={"DEATH"} if summon then spheres[2]="NIGHTMARES" end return {raws=tbl,weight=1,spheres=spheres} -end \ No newline at end of file +end