From c165ae044579897b7f41f99245874c3a1dab30f6 Mon Sep 17 00:00:00 2001 From: Jedzkie Date: Sat, 9 Jan 2016 20:41:31 +0800 Subject: Fixes #907 - Cloaking Exceed speed must 140%, not 200+%. --- src/map/status.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/map/status.c b/src/map/status.c index c755d8eb0..d374f742c 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -8977,8 +8977,8 @@ int status_change_start(struct block_list *src, struct block_list *bl, enum sc_t tick_time = 3000; // [GodLesZ] tick time break; case SC_CLOAKINGEXCEED: - val2 = ( val1 + 1 ) / 2; // Hits - val3 = 90 + val1 * 10; // Walk speed + val2 = (val1 + 1) / 2; // Hits + val3 = (val1 - 1) * 10; // Walk speed if (bl->type == BL_PC) val4 |= battle_config.pc_cloak_check_type&7; else -- cgit v1.2.3-60-g2f50