2026/04/29 Morning Update 3

Soul Eater NPCs shouldn't spam Soul Blast.
Reduced DelayCommand() to create a Wight via Soule Eater's Soul Drain.
This commit is contained in:
Jaysyn904
2026-04-29 11:16:42 -04:00
parent 8dc0e492cc
commit cbe3c42814
3 changed files with 3 additions and 3 deletions

View File

@@ -310,7 +310,7 @@ void DoDeathDependent(object oEater, object oTarget, string sResRef, string sNam
AddHenchman(oEater, oSlave);
SetMaxHenchmen(nMaxHenchmen);
//DelayCommand(3.0f, LevelUpWight(GetHitDice(oEater) - 3, oSlave));
DelayCommand(3.0f, LevelUpWight(PRCMax(GetHitDice(oTarget), GetLevelByClass(CLASS_TYPE_SOUL_EATER, oEater) - 1), oSlave));
DelayCommand(0.0f, LevelUpWight(PRCMax(GetHitDice(oTarget), GetLevelByClass(CLASS_TYPE_SOUL_EATER, oEater) - 1), oSlave));
}
else if(DEBUG)
DoDebug("prc_sleat_edrain: ERROR: Failed to create wight at location " + DebugLocation2Str(lSpawn));