Skip to content

Commit

Permalink
Backport fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sollace committed May 15, 2024
1 parent 8e5f0b5 commit b87cbc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/eu/ha3/presencefootsteps/world/PFSolver.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit b87cbc6

Please sign in to comment.