diff options
author | glighta <glighta@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2013-01-02 09:40:01 +0000 |
---|---|---|
committer | glighta <glighta@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2013-01-02 09:40:01 +0000 |
commit | bdc1c715db65c2d9378dcff685c4b6b87d752da7 (patch) | |
tree | 8e61570a2c4e91eaa34c96e2967068e1e927ec07 /src/map/battle.c | |
parent | 063d2e1d4f802a4379bef408ce968a49d209f90f (diff) | |
download | hercules-bdc1c715db65c2d9378dcff685c4b6b87d752da7.tar.gz hercules-bdc1c715db65c2d9378dcff685c4b6b87d752da7.tar.bz2 hercules-bdc1c715db65c2d9378dcff685c4b6b87d752da7.tar.xz hercules-bdc1c715db65c2d9378dcff685c4b6b87d752da7.zip |
-Follow up r17065
--removing useless check on skill_id
--fix few broken atcommand due to failed sscanf
-Change skill_amotion_leniency as pointed out on tid:76492 so amotion delay wont be twice by default, (also increase intervall if you do want higher acd)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@17072 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/battle.c')
-rw-r--r-- | src/map/battle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/battle.c b/src/map/battle.c index d6bcc6060..87f1e7196 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -5846,7 +5846,7 @@ static const struct _battle_data { { "max_third_parameter", &battle_config.max_third_parameter, 120, 10, 10000, }, { "max_baby_third_parameter", &battle_config.max_baby_third_parameter, 108, 10, 10000, }, { "atcommand_max_stat_bypass", &battle_config.atcommand_max_stat_bypass, 0, 0, 100, }, - { "skill_amotion_leniency", &battle_config.skill_amotion_leniency, 90, 0, 100 }, + { "skill_amotion_leniency", &battle_config.skill_amotion_leniency, 90, 0, 300 }, { "mvp_tomb_enabled", &battle_config.mvp_tomb_enabled, 1, 0, 1 }, { "feature.atcommand_suggestions", &battle_config.atcommand_suggestions_enabled, 0, 0, 1 }, { "min_npc_vending_distance", &battle_config.min_npc_vending_distance, 3, 0, 100 }, |