mirror of
https://github.com/TotalFreedomMC/TF-ProjectKorra.git
synced 2025-02-11 19:50:37 +00:00
commit
ac1057cc5b
1 changed files with 2 additions and 1 deletions
|
@ -63,7 +63,7 @@ public class FireBlast extends FireAbility {
|
||||||
this.origin = location.clone();
|
this.origin = location.clone();
|
||||||
this.direction = direction.clone().normalize();
|
this.direction = direction.clone().normalize();
|
||||||
this.range = getDayFactor(range);
|
this.range = getDayFactor(range);
|
||||||
this.damage *= 1.5;
|
this.damage = getDayFactor(damage);
|
||||||
|
|
||||||
start();
|
start();
|
||||||
}
|
}
|
||||||
|
@ -78,6 +78,7 @@ public class FireBlast extends FireAbility {
|
||||||
}
|
}
|
||||||
|
|
||||||
setFields();
|
setFields();
|
||||||
|
this.damage = getDayFactor(getConfig().getDouble("Abilities.Fire.FireBlast.Damage"));
|
||||||
this.safeBlocks = new ArrayList<>();
|
this.safeBlocks = new ArrayList<>();
|
||||||
this.range = getDayFactor(this.range);
|
this.range = getDayFactor(this.range);
|
||||||
this.location = player.getEyeLocation();
|
this.location = player.getEyeLocation();
|
||||||
|
|
Loading…
Reference in a new issue