Skip to content

Commit

Permalink
Tweak particles
Browse files Browse the repository at this point in the history
  • Loading branch information
WenXin20 committed Mar 4, 2025
1 parent 2aa4f67 commit 39f6e46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ public void entityInside(BlockState state, Level world, BlockPos pos, Entity ent
if (world instanceof ServerLevel serverWorld)
serverWorld.sendParticles(ParticleRegistry.GLOWING_STAR.get(),
newRespawnPos.getX() + 0.5, newRespawnPos.getY() + 0.5, newRespawnPos.getZ() + 0.5,
10, 0.4, 0.4, 0.4, 0.6);
10, 0.4, 0.5, 0.4, 0.6);
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public static void onPlayerRespawn(PlayerEvent.PlayerRespawnEvent event) {
if (world instanceof ServerLevel serverWorld)
serverWorld.sendParticles(ParticleRegistry.GLOWING_STAR.get(),
respawnPos.getX() + 0.5, respawnPos.getY() + 0.5, respawnPos.getZ() + 0.5,
10, 0.4, 0.4, 0.4, 0.6);
10, 0.4, 0.5, 0.4, 0.6);
}

if (state.getBlock() instanceof CheckpointFlagBlock flagBlock
Expand Down

0 comments on commit 39f6e46

Please sign in to comment.