Tweak particles a tiny smidge

This commit is contained in:
nelle 2023-10-24 18:33:35 -06:00
parent 205121fe0a
commit 1186d02bb8

View file

@ -100,9 +100,9 @@ public class StoveBlock extends BlockWithEntity {
public void spawnParticles(World world, int x, int y, int z, Random random) {
if (this.isLit) {
int var6 = world.getBlockData(x, y, z);
float var7 = (float)x + 0.5F;
float var8 = (float)y + 0.0F + random.nextFloat() * 6.0F / 16.0F;
float var9 = (float)z + 0.5F;
float var7 = (float)x + 0.5F + random.nextFloat() * 6.0F / 16.0F;
float var8 = (float)y + 1F;
float var9 = (float)z + 0.0F;
float var10 = 0.52F;
float var11 = random.nextFloat() * 0.6F - 0.3F;
if (var6 == 4) {