Merge pull request #428 from Simplicitee/master

Fix FireBlast damage
This commit is contained in:
OmniCypher 2016-02-26 17:51:36 -08:00
commit ac1057cc5b

View file

@ -63,7 +63,7 @@ public class FireBlast extends FireAbility {
this.origin = location.clone();
this.direction = direction.clone().normalize();
this.range = getDayFactor(range);
this.damage *= 1.5;
this.damage = getDayFactor(damage);
start();
}
@ -78,6 +78,7 @@ public class FireBlast extends FireAbility {
}
setFields();
this.damage = getDayFactor(getConfig().getDouble("Abilities.Fire.FireBlast.Damage"));
this.safeBlocks = new ArrayList<>();
this.range = getDayFactor(this.range);
this.location = player.getEyeLocation();