diff options
Diffstat (limited to 'npc')
-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 6e9abf357..836dc49b9 100644 --- a/npc/025-1/ctrl.c +++ b/npc/025-1/ctrl.c @@ -389,6 +389,7 @@ OnConquest: // Experience injection to the brave (500k EXP, 100k JEXP) if (playerattached()) getexp 500000, 100000; + stopnpctimer; end; } @@ -457,7 +458,7 @@ OnInit: end; OnTouch: // Disabled - if ($GAME_STORYLINE < 3 || !is_admin() || $@FORTRESS_STATUE) + if ($GAME_STORYLINE < 3 || $@FORTRESS_STATUE) end; // Blacklisted if (array_find($@FORT_BLACKLIST, getcharid(0)) != -1) |