Uploaded image for project: 'Spigot'
  1. Spigot
  2. SPIGOT-1623

ParticleEffect with data using wrong overload method.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: Minor Minor
    • None
    • 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);
      }
      

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

              Created:
              Updated:
              Resolved: