[SPIGOT-1623] ParticleEffect with data using wrong overload method. Created: 02/Mar/16  Updated: 02/Mar/16  Resolved: 02/Mar/16

Status: Resolved
Project: Spigot
Component/s: None
Affects Version/s: None
Fix Version/s: None

Type: Bug Priority: Minor
Reporter: Jos Roossien Assignee: Unassigned
Resolution: Fixed Votes: 1
Labels: 1.9, Particle


 Description   

For both CraftWorld and CraftPlayer it's not passing in the data argument.

@Override
public <T> void spawnParticle(Particle particle, double x, double y, double z, int count, T data) {
        spawnParticle(particle, x, y, z, count, 0, 0, 0);
}

Should be:

@Override
public <T> void spawnParticle(Particle particle, double x, double y, double z, int count, T data) {
        spawnParticle(particle, x, y, z, count, 0, 0, 0, data);
}

Generated at Sat Dec 13 15:18:02 UTC 2025 using Jira 10.3.13#10030013-sha1:56dd970ae30ebfeda3a697d25be1f6388b68a422.