This commit is contained in:
Leonwang4234
2020-10-02 18:17:51 -07:00
parent e17ad7a429
commit 88639fffc5
3 changed files with 7 additions and 6 deletions
@@ -189,6 +189,12 @@ public abstract class BulletType extends Content{
if(status != StatusEffects.none){
Damage.status(b.team, x, y, splashDamageRadius, status, statusDuration, collidesAir, collidesGround);
}
if(effect == StatusEffects.burning) {
indexer.eachBlock(null, x, y, splashDamageRadius, other -> other.team != team, other -> {
Damage.createIncend(x, y, damage/10f, (int) damage/10);
});
}
}
for(int i = 0; i < lightning; i++){