summaryrefslogtreecommitdiff
path: root/src/map/skill.c
diff options
context:
space:
mode:
authorrud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-11-12 14:29:41 +0000
committerrud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-11-12 14:29:41 +0000
commit4cc80656aeb5af0e810a5f7c1ef28624b1328dbd (patch)
tree571287ac45fe74432b3c4e96f26eb9de8ba6af2d /src/map/skill.c
parent0ac093bd184a8821d8761929a472a0103ddfa67a (diff)
downloadhercules-4cc80656aeb5af0e810a5f7c1ef28624b1328dbd.tar.gz
hercules-4cc80656aeb5af0e810a5f7c1ef28624b1328dbd.tar.bz2
hercules-4cc80656aeb5af0e810a5f7c1ef28624b1328dbd.tar.xz
hercules-4cc80656aeb5af0e810a5f7c1ef28624b1328dbd.zip
Fixed bugreport:6719 adjusted SR_GENTLETOUCH_CURE,SR_GENTLETOUCH_CHANGE, and SR_GENTLETOUCH_REVITALIZE required spirit balls.
Fixed bugreport:6140 removed unused status icon SI_CLOUDKILL. Fixed bugreport:6829 an animation problem in casting skills. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16921 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.c')
-rw-r--r--src/map/skill.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/map/skill.c b/src/map/skill.c
index 89a9fa658..5d03b739a 100644
--- a/src/map/skill.c
+++ b/src/map/skill.c
@@ -9709,9 +9709,9 @@ int skill_castend_pos2(struct block_list* src, int x, int y, int skillid, int sk
map_foreachinarea(skill_graffitiremover,src->m,x-i,y-i,x+i,y+i,BL_SKILL);
break;
- case SO_CLOUD_KILL:
case SO_WARMER:
- flag|=(skillid == SO_WARMER)?8:4;
+ flag|= 8;
+ case SO_CLOUD_KILL:
skill_unitsetting(src,skillid,skilllv,x,y,0);
break;
@@ -14420,10 +14420,6 @@ int skill_clear_group (struct block_list *bl, int flag)
if (flag&1)
group[count++]= ud->skillunit[i];
break;
- case SO_CLOUD_KILL:
- if( flag&4 )
- group[count++]= ud->skillunit[i];
- break;
case SO_WARMER:
if( flag&8 )
group[count++]= ud->skillunit[i];
@@ -14462,7 +14458,6 @@ struct skill_unit_group *skill_locate_element_field(struct block_list *bl)
case SA_LANDPROTECTOR:
case NJ_SUITON:
case SO_WARMER:
- case SO_CLOUD_KILL:
case SC_BLOODYLUST:
return ud->skillunit[i];
}