Skip to content

Commit

Permalink
Revert "Fixed missing parenthesis"
Browse files Browse the repository at this point in the history
This reverts commit 312a339.
  • Loading branch information
fulminazzo committed Dec 24, 2024
1 parent 312a339 commit fec281f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/src/main/resources/commands/PlayParticle.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ static getOption(CommandSender sender, ParticleType particleType, Class optionTy
org.bukkit.Color color = org.bukkit.Color.RED
// Qualified reference is necessary to permit retro-compatibility
new PrimitiveParticleOption<>(new org.bukkit.Particle.Trail(start, color, Integer.valueOf(args[0])))
} else if (particleType == ParticleType.VIBRATION) {
else if (particleType == ParticleType.VIBRATION) {
Location start = sender.location
Location end = start.clone().add(0, 10, 0)
// Qualified reference is necessary to permit retro-compatibility
Expand Down

0 comments on commit fec281f

Please sign in to comment.