From 14daf06347a4c33c267325a69cd4c039cb92f5ed Mon Sep 17 00:00:00 2001 From: Emistry Haoyan Date: Tue, 14 Mar 2017 00:37:37 +0800 Subject: Fix Voice of Siren minimum duration. - The minimum duration of Voice of Siren is now 10 seconds - Credit https://github.com/rathena/rathena/commit/f7a276ec7389389b6b56653ad87b21eb937aace6 --- src/map/status.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/map/status.c b/src/map/status.c index 78c11899b..926bdb40a 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -7309,6 +7309,9 @@ int status_get_sc_def(struct block_list *src, struct block_list *bl, enum sc_typ case SC_NETHERWORLD: tick = max(tick, 4000); break; + case SC_SIREN: + tick = max(tick, 10000); // Minimum duration 10s + break; default: //Skills need to trigger even if the duration is reduced below 1ms tick = max(tick, 1); -- cgit v1.2.3-60-g2f50