fix(Scripts/VioletHold): Prevent Sinclari from despawning (#25455)

This commit is contained in:
Andrew
2026-04-13 08:46:48 -03:00
committed by GitHub
parent bc38cf2d27
commit dde37ba4d9

View File

@@ -377,7 +377,7 @@ public:
if (Creature* sinclari = GetCreature(DATA_SINCLARI)) if (Creature* sinclari = GetCreature(DATA_SINCLARI))
{ {
sinclari->AI()->Talk(SAY_SINCLARI_DOOR_LOCK); sinclari->AI()->Talk(SAY_SINCLARI_DOOR_LOCK);
sinclari->DespawnOrUnsummon(5s); sinclari->SetVisible(false);
} }
if (Creature* doorSeal = GetCreature(DATA_DOOR_SEAL)) if (Creature* doorSeal = GetCreature(DATA_DOOR_SEAL))
doorSeal->RemoveAllAuras(); doorSeal->RemoveAllAuras();