diff options
-rw-r--r-- | npc/015-8/sealedshrine.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/npc/015-8/sealedshrine.txt b/npc/015-8/sealedshrine.txt index 88bc5f4eb..d7989d44e 100644 --- a/npc/015-8/sealedshrine.txt +++ b/npc/015-8/sealedshrine.txt @@ -43,6 +43,13 @@ function script SaggySealInit { else @SaggySeal$=.@n$; + // You're dead, drop the script + if (ispcdead()) { + npctalk l("You are dead. Aborting."); + @SaggySeal$=""; + end; + } + // Drain some Mana // Max wave is 9... So it should cap at 10% .@val=7+(.@z/3); |