File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
src/main/java/com/gregtechceu/gtceu/api/machine/feature/multiblock Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -43,23 +43,23 @@ default void emitPollutionParticles() {
4343 return ;
4444 }
4545
46- float xPos = facing .getStepX () * 0.76F + pos .getX () + 0.25F ;
47- float yPos = facing .getStepY () * 0.76F + pos .getY () + 0.25F ;
48- float zPos = facing .getStepZ () * 0.76F + pos .getZ () + 0.25F ;
46+ float xPos = facing .getStepX () + pos .getX () + 0.25F ;
47+ float yPos = facing .getStepY () + pos .getY () + 0.25F ;
48+ float zPos = facing .getStepZ () + pos .getZ () + 0.25F ;
4949
5050 float ySpd = facing .getStepY () * 0.1F + 0.2F + 0.1F * GTValues .RNG .nextFloat ();
5151 float xSpd ;
5252 float zSpd ;
5353
5454 if (facing .getStepY () == -1 ) {
5555 float temp = GTValues .RNG .nextFloat () * 2 * (float ) Math .PI ;
56- xSpd = (float ) Math .sin (temp ) * 0.1F ;
57- zSpd = (float ) Math .cos (temp ) * 0.1F ;
56+ xSpd = (float ) Math .sin (temp ) * 0.08F ;
57+ zSpd = (float ) Math .cos (temp ) * 0.08F ;
5858 } else {
5959 xSpd = facing .getStepX () * (0.1F + 0.2F * GTValues .RNG .nextFloat ());
6060 zSpd = facing .getStepZ () * (0.1F + 0.2F * GTValues .RNG .nextFloat ());
6161 }
62- self ().getLevel ().addParticle (ParticleTypes .LARGE_SMOKE ,
62+ self ().getLevel ().addParticle (ParticleTypes .CAMPFIRE_SIGNAL_SMOKE ,
6363 xPos + GTValues .RNG .nextFloat () * 0.5F ,
6464 yPos + GTValues .RNG .nextFloat () * 0.5F ,
6565 zPos + GTValues .RNG .nextFloat () * 0.5F ,
You can’t perform that action at this time.
0 commit comments