[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); } |