summaryrefslogtreecommitdiff
path: root/src/map/battle.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-11-24 16:50:23 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-11-24 16:50:23 +0000
commit01476c09aec449f89f52761b98da61e6c541e563 (patch)
treeb256b9cb2f53f834798b267d5356b4b06f3b8142 /src/map/battle.c
parentdb1cd48635235a32a7c0d0db4c81eea517a73361 (diff)
downloadhercules-01476c09aec449f89f52761b98da61e6c541e563.tar.gz
hercules-01476c09aec449f89f52761b98da61e6c541e563.tar.bz2
hercules-01476c09aec449f89f52761b98da61e6c541e563.tar.xz
hercules-01476c09aec449f89f52761b98da61e6c541e563.zip
- Fixed EDP's damage being 100% more than it should (should be 5x, not 6x on normal attacks)
- Self Destruction will only hit everyone and not just enemies when used by mobs (non marine spheres) unless the map is a versus map. - Spider Web's duration is now halved on players (before it was halved in pvp maps only) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9314 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/battle.c')
-rw-r--r--src/map/battle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/battle.c b/src/map/battle.c
index 20e6e345a..c168f8bdb 100644
--- a/src/map/battle.c
+++ b/src/map/battle.c
@@ -1640,7 +1640,7 @@ static struct Damage battle_calc_weapon_attack(
skillratio += 2*sc->data[SC_TRUESIGHT].val1;
// It is still not quite decided whether it works on bosses or not...
if(sc->data[SC_EDP].timer != -1 /*&& !(t_mode&MD_BOSS)*/ && skill_num != ASC_BREAKER && skill_num != ASC_METEORASSAULT)
- skillratio += 150 +50*sc->data[SC_EDP].val1;
+ skillratio += sc->data[SC_EDP].val3;
}
switch (skill_num) {
case AS_SONICBLOW: //EDP will not stack with Soul Link bonus.