From 604aa8ea6b8691e0b886bc55830930c65226e600 Mon Sep 17 00:00:00 2001 From: ultramage Date: Fri, 25 May 2007 19:37:58 +0000 Subject: Reformatting, warning fixes, unsigned char removal git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10618 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/skill.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/map/skill.c') diff --git a/src/map/skill.c b/src/map/skill.c index efadefe9c..918f90737 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -2442,7 +2442,7 @@ static int skill_check_condition_hom (struct homun_data *hd, int skill, int lv, return 0; break; case HVAN_EXPLOSION: - if(hd->homunculus.intimacy < battle_config.hvan_explosion_intimate) + if(hd->homunculus.intimacy < (unsigned int)battle_config.hvan_explosion_intimate) return 0; break; } @@ -6115,7 +6115,7 @@ int skill_castend_pos2 (struct block_list *src, int x, int y, int skillid, int s case WZ_METEOR: { int flag=0, area = skill_get_splash(skillid, skilllv); - short tmpx, tmpy, x1 = 0, y1 = 0; + short tmpx = 0, tmpy = 0, x1 = 0, y1 = 0; if (sc && sc->data[SC_MAGICPOWER].timer != -1) flag = flag|2; //Store the magic power flag for future use. [Skotlex] for(i=0;i<2+(skilllv>>1);i++) { -- cgit v1.2.3-60-g2f50