diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-09 05:50:43 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-09 05:50:43 +0000 |
commit | 1cd7372c0812c1316bd9fc7f04f9c454b87a5ef5 (patch) | |
tree | 4842d5699aa9c0112e144ce6696836c28c215b80 /src/map/battle.c | |
parent | 215674c27bd3ba99de23c81356a77c94bc967b6a (diff) | |
download | hercules-1cd7372c0812c1316bd9fc7f04f9c454b87a5ef5.tar.gz hercules-1cd7372c0812c1316bd9fc7f04f9c454b87a5ef5.tar.bz2 hercules-1cd7372c0812c1316bd9fc7f04f9c454b87a5ef5.tar.xz hercules-1cd7372c0812c1316bd9fc7f04f9c454b87a5ef5.zip |
- Changed the default of multi_hit_delay from 230 to 80 which seems more official.
- Wedding recall skills are now blocked by the nomemo mapflag.
- Skill delay for weapon types is now based on adelay (ASPD) rather than amotion (ASPD/2)
- Removed ending Endure when casting Berserk, may fix the timer mismatch issues.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5963 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 a60c0b577..514adeec7 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -3992,7 +3992,7 @@ void battle_set_defaults() { battle_config.summons_inherit_effects=1;
battle_config.pc_walk_delay_rate=20;
battle_config.walk_delay_rate=100;
- battle_config.multihit_delay=230;
+ battle_config.multihit_delay=80;
battle_config.quest_skill_learn=0;
battle_config.quest_skill_reset=1;
battle_config.basic_skill_check=1;
|