diff options
author | Jedzkie <jedzkie13@rocketmail.com> | 2016-01-09 20:41:31 +0800 |
---|---|---|
committer | Jedzkie <jedzkie13@rocketmail.com> | 2016-01-09 21:12:13 +0800 |
commit | c165ae044579897b7f41f99245874c3a1dab30f6 (patch) | |
tree | c1d375163274957ec671b88a4850e41f70306c0c /src | |
parent | c7c956f71e63c9dd477c59d778c25690c6267b83 (diff) | |
download | hercules-c165ae044579897b7f41f99245874c3a1dab30f6.tar.gz hercules-c165ae044579897b7f41f99245874c3a1dab30f6.tar.bz2 hercules-c165ae044579897b7f41f99245874c3a1dab30f6.tar.xz hercules-c165ae044579897b7f41f99245874c3a1dab30f6.zip |
Fixes #907
- Cloaking Exceed speed must 140%, not 200+%.
Diffstat (limited to 'src')
-rw-r--r-- | src/map/status.c | 4 |
1 files 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 |