1.20.4 -> 1.20.6
Some checks failed
/ build (push) Failing after 1m3s

This commit is contained in:
Soph :3 2024-06-14 01:09:25 +03:00
parent d4a0264d39
commit b220dfbfcb
Signed by: sophie
GPG key ID: EDA5D222A0C270F2
2 changed files with 2 additions and 2 deletions

View file

@ -39,7 +39,7 @@
<dependency>
<groupId>io.papermc.paper</groupId>
<artifactId>paper-api</artifactId>
<version>1.20.4-R0.1-SNAPSHOT</version>
<version>1.20.6-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>

View file

@ -92,7 +92,7 @@ public class Emote {
List<Location> locs = getEmoteLocs(player.getLocation(), emotes.get(emote), player.getLocation());
for (Location loc : locs) {
Particle.DustOptions dustOptions = new Particle.DustOptions(Color.WHITE, 0.5f);
player.getWorld().spawnParticle(Particle.REDSTONE, loc, 15, 0, 0, 0, dustOptions);
player.getWorld().spawnParticle(Particle.DUST, loc, 15, 0, 0, 0, dustOptions);
}
}