diff options
author | epoque11 <epoque11@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-12-14 14:07:25 +0000 |
---|---|---|
committer | epoque11 <epoque11@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-12-14 14:07:25 +0000 |
commit | c0d762eba9f73c6eb239cd100e32270e44b5fb2d (patch) | |
tree | 9610818c0afa7da908fc89b86f9946760603d3d2 /src/map/battle.c | |
parent | cbe6d3dd387bd86beb1c521e686a1f8b8c52c5c3 (diff) | |
download | hercules-c0d762eba9f73c6eb239cd100e32270e44b5fb2d.tar.gz hercules-c0d762eba9f73c6eb239cd100e32270e44b5fb2d.tar.bz2 hercules-c0d762eba9f73c6eb239cd100e32270e44b5fb2d.tar.xz hercules-c0d762eba9f73c6eb239cd100e32270e44b5fb2d.zip |
- Added new check conditions to prevent abuse from no-delay .act files (bugreport:4249)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15105 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/battle.c')
-rw-r--r-- | src/map/battle.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/map/battle.c b/src/map/battle.c index 0df68a572..b1232b488 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -4590,8 +4590,9 @@ static const struct _battle_data { /** * rAthena **/ - { "max_third_parameter", &battle_config.max_third_parameter, 20, 0, INT_MAX, }, - { "atcommand_max_stat_bypass", &battle_config.atcommand_max_stat_bypass, 0, 0, 100, }, + { "max_third_parameter", &battle_config.max_third_parameter, 20, 0, INT_MAX, }, + { "atcommand_max_stat_bypass", &battle_config.atcommand_max_stat_bypass, 0, 0, 100, }, + { "skill_amotion_leniency", &battle_config.skill_amotion_leniency, 90, 0, 100 }, }; |