Fungal Pass map fixes

This commit is contained in:
Anuken
2020-11-26 14:24:35 -05:00
parent 3fe4ae38b6
commit 84474040c0
2 changed files with 2 additions and 2 deletions

View File

@@ -77,12 +77,12 @@ abstract class FireComp implements Timedc, Posc, Firec, Syncc{
}
}
if(Mathf.chance(0.05 * Time.delta)){
if(Mathf.chance(0.025 * Time.delta)){
Puddlec p = Puddles.get(tile);
puddleFlammability = p != null ? p.getFlammability() / 3f : 0;
if(damage){
entity.damage(0.8f);
entity.damage(1.6f);
}
Damage.damageUnits(null, tile.worldx(), tile.worldy(), tilesize, 3f,
unit -> !unit.isFlying() && !unit.isImmune(StatusEffects.burning),