summaryrefslogtreecommitdiff
path: root/src/map/battle.c
diff options
context:
space:
mode:
authorLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-03-31 10:54:12 +0000
committerLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-03-31 10:54:12 +0000
commit21abb8399ed26bb55fc9ed954d373115b395b45c (patch)
tree0e4c5807d10f9f69527dbd2bf3c204ad59fe0801 /src/map/battle.c
parentd9406a947db06d0d63b538fdd0339171bc0303b3 (diff)
downloadhercules-21abb8399ed26bb55fc9ed954d373115b395b45c.tar.gz
hercules-21abb8399ed26bb55fc9ed954d373115b395b45c.tar.bz2
hercules-21abb8399ed26bb55fc9ed954d373115b395b45c.tar.xz
hercules-21abb8399ed26bb55fc9ed954d373115b395b45c.zip
fixed aciddemo map server crash
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12454 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/battle.c')
-rw-r--r--src/map/battle.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/map/battle.c b/src/map/battle.c
index ae0c9d4a0..a1b52c5e5 100644
--- a/src/map/battle.c
+++ b/src/map/battle.c
@@ -2518,7 +2518,10 @@ struct Damage battle_calc_misc_attack(struct block_list *src,struct block_list *
md.damage = 1+rand()%9999;
break;
case CR_ACIDDEMONSTRATION: // updated the formula based on a Japanese formula found to be exact [Reddozen]
- md.damage = 7*tstatus->vit*sstatus->int_*sstatus->int_ / (10*(tstatus->vit+sstatus->int_));
+ if(tstatus->vit+sstatus->int_) //crash fix
+ md.damage = 7*tstatus->vit*sstatus->int_*sstatus->int_ / (10*(tstatus->vit+sstatus->int_));
+ else
+ md.damage = 0;
if (tsd) md.damage>>=1;
if (md.damage < 0 || md.damage > INT_MAX>>1)
//Overflow prevention, will anyone whine if I cap it to a few billion?