diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-10-17 12:25:58 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-10-17 12:25:58 -0300 |
commit | 189d41d88e229a7a1b5572d2dcdd95818703f664 (patch) | |
tree | d17656e8b66df3495e07505d6a4b908c59bb04e7 /npc/025-1 | |
parent | c2d5e591dc3ed47457774dfe8ee9e0e1fe003609 (diff) | |
download | serverdata-189d41d88e229a7a1b5572d2dcdd95818703f664.tar.gz serverdata-189d41d88e229a7a1b5572d2dcdd95818703f664.tar.bz2 serverdata-189d41d88e229a7a1b5572d2dcdd95818703f664.tar.xz serverdata-189d41d88e229a7a1b5572d2dcdd95818703f664.zip |
Spice up things at Fortress Town Siege - The Five Heroes are immune to the stun
Diffstat (limited to 'npc/025-1')
-rw-r--r-- | npc/025-1/ctrl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/npc/025-1/ctrl.c b/npc/025-1/ctrl.c index 1bd138488..1b42e6c7f 100644 --- a/npc/025-1/ctrl.c +++ b/npc/025-1/ctrl.c @@ -104,7 +104,8 @@ function script FTStatue { if (askyesno() == ASK_YES) { if ($@FORTRESS_STATUE & .@id) return false; - sc_start SC_STUN, 10000, 1; + if (!islegendary()) + sc_start SC_STUN, 10000, 1; doevent("Gate#F::OnStatueBreach"); mapannounce("025-1", strcharinfo(0)+" has broken a statue!", bc_map); $@FORTRESS_STATUE=$@FORTRESS_STATUE|.@id; |