Fix Charged Fireblast

- Removes fireblast being instantiated if a player stops sneaking whilst charging fireblast
This commit is contained in:
Simplicitee 2015-11-06 13:29:19 -05:00
parent 80ef1ba645
commit e286698e63

View file

@ -291,7 +291,6 @@ public class Fireball extends AddonAbility {
}
if (!player.isSneaking() && !charged) {
new FireBlast(player);
remove();
return false;
}