ParticleEffect with data using wrong overload method.

    • Type: Bug
    • Resolution: Fixed
    • Priority: Minor
    • None
    • Affects Version/s: None

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

            Assignee:
            Unassigned
            Reporter:
            Jos Roossien
            Votes:
            1 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: