diff options
author | skyleo <skyleo@skyleo.de> | 2019-09-26 14:42:56 +0200 |
---|---|---|
committer | skyleo <skyleo@skyleo.de> | 2019-09-26 14:42:56 +0200 |
commit | 2e4a0bf7a25e47d8adc4eb70a386d5e3b39a5e62 (patch) | |
tree | d42b3cb1bd45ff1deee3f8f321f32bb240f3d13e /npc/other | |
parent | d026e28fd78f60dfa21da381f17f2a8cc9ae3d11 (diff) | |
download | hercules-2e4a0bf7a25e47d8adc4eb70a386d5e3b39a5e62.tar.gz hercules-2e4a0bf7a25e47d8adc4eb70a386d5e3b39a5e62.tar.bz2 hercules-2e4a0bf7a25e47d8adc4eb70a386d5e3b39a5e62.tar.xz hercules-2e4a0bf7a25e47d8adc4eb70a386d5e3b39a5e62.zip |
Fix a missing end in Slipslowrun NPC that allowed to reset the timer
This bug allowed you to have no time limit on the party mode of
Izlude Arena, making it quite easy for you to farm OCAs.
Thanks to Vector from oRO Staff for finding this!
Diffstat (limited to 'npc/other')
-rw-r--r-- | npc/other/arena/arena_party.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/npc/other/arena/arena_party.txt b/npc/other/arena/arena_party.txt index 67c69f8e8..f3362687d 100644 --- a/npc/other/arena/arena_party.txt +++ b/npc/other/arena/arena_party.txt @@ -165,6 +165,8 @@ OnTouch: } force_1-2,99,31,4 script Slipslowrun#party 4_F_TELEPORTER,{ + end; + OnStart: initnpctimer; $arena_minptst = gettime(GETTIME_MINUTE); |