Skip to content

Commit

Permalink
Updated Volcanic Ash effect (fixes #1090)
Browse files Browse the repository at this point in the history
* No longer gives 150% increased damage to fire type attacks.
* No longer damages self and allies on normal map types.
  • Loading branch information
aleos89 committed Mar 26, 2016
1 parent 590f42c commit 88d2dde
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/map/battle.c
Expand Up @@ -486,8 +486,6 @@ int64 battle_attr_fix(struct block_list *src, struct block_list *target, int64 d
status_change_end(target, SC_CRYSTALIZE, INVALID_TIMER);
if (tsc->data[SC_EARTH_INSIGNIA])
ratio += 50;
if (tsc->data[SC_ASH])
ratio += 50;
break;
case ELE_HOLY:
if (tsc->data[SC_ORATIO])
Expand Down
4 changes: 4 additions & 0 deletions src/map/skill.c
Expand Up @@ -12845,6 +12845,10 @@ struct skill_unit_group *skill_unitsetting(struct block_list *src, uint16 skill_
// Officially, duration (limit) is 5secs, interval 0.5secs damage interval.
limit = interval * 10;
break;
case MH_VOLCANIC_ASH:
if (!map_flag_vs(src->m))
target = BCT_ENEMY;
break;
}

// Init skill unit group
Expand Down

0 comments on commit 88d2dde

Please sign in to comment.