From b87cbc66297d97f0c67fac3cc528eb6c73edfb3f Mon Sep 17 00:00:00 2001 From: Sollace Date: Wed, 15 May 2024 19:43:59 +0100 Subject: [PATCH] Backport fixes --- src/main/java/eu/ha3/presencefootsteps/world/PFSolver.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/eu/ha3/presencefootsteps/world/PFSolver.java b/src/main/java/eu/ha3/presencefootsteps/world/PFSolver.java index 78c34f1d..420b0883 100644 --- a/src/main/java/eu/ha3/presencefootsteps/world/PFSolver.java +++ b/src/main/java/eu/ha3/presencefootsteps/world/PFSolver.java @@ -158,7 +158,7 @@ private Association findAssociation(AssociationPool associations, LivingEntity p if ((association = findAssociation(associations, player, pos, collider)).isResult()) { if (!association.state().isLiquid()) { if (engine.getConfig().isVisualiserRunning()) { - player.getWorld().addParticle(ParticleTypes.DUST_PLUME, + player.getWorld().addParticle(ParticleTypes.CLOUD, association.pos().getX() + 0.5, association.pos().getY() + 0.9, association.pos().getZ() + 0.5, 0, 0, 0); @@ -194,7 +194,7 @@ private Association findAssociation(AssociationPool associations, LivingEntity p if ((association = findAssociation(associations, player, pos, collider)).isResult()) { if (!association.state().isLiquid()) { if (engine.getConfig().isVisualiserRunning()) { - player.getWorld().addParticle(ParticleTypes.DUST_PLUME, + player.getWorld().addParticle(ParticleTypes.CLOUD, association.pos().getX() + 0.5, association.pos().getY() + 0.9, association.pos().getZ() + 0.5, 0, 0, 0);