Config update & introduction of flammable tag

This commit is contained in:
2021-11-27 03:07:09 -05:00
parent 579a9f0f45
commit d7aaa4f06f
9 changed files with 70 additions and 46 deletions
@@ -43,7 +43,7 @@ public class WDBlazePowderWireBlock extends WDWireBlock{
// determine what particle I should show
ParticleEffect blaze_powder_particle = ParticleTypes.FLAME;
if(world.getBiomeAccess().getBiome(pos).getDownfall() > 0.0F)
if(world.getBiomeAccess().getBiome(pos).getDownfall() > 0.0F) // Todo: this isn't correct
blaze_powder_particle = ParticleTypes.SMOKE;
world.addParticle(blaze_powder_particle, pos.getX() + x_rand, pos.getY() + 0.1D, pos.getZ() + z_rand, 0.0, 0.0, 0.0);