Cancelling EntityDamageEvent / EntityCombustEvent still despawns item.

    • Type: Bug
    • Resolution: Cannot Reproduce
    • Priority: Minor
    • None
    • Affects Version/s: None
    • Environment:

      Spigot plugin 1.12.2

      Cancelling EntityDamageEvent or EntityCombustEvent when an item is burned does not prevent the removal of the item.

          [SPIGOT-3912] Cancelling EntityDamageEvent / EntityCombustEvent still despawns item.

          md_5 added a comment -

          Cannot reproduce, both of these code blocks work independently.

              @EventHandler
              public void test(EntityDamageEvent e)
              {
          
                  if ( e.getEntity() instanceof Item )
                  {
                      e.setCancelled( true );
                  }
              }
          
              @EventHandler
              public void test(EntityCombustEvent e)
              {
          
                  if ( e.getEntity() instanceof Item )
                  {
                      e.setCancelled( true );
                  }
              }
          

          md_5 added a comment - Cannot reproduce, both of these code blocks work independently. @EventHandler public void test(EntityDamageEvent e) { if ( e.getEntity() instanceof Item ) { e.setCancelled( true ); } } @EventHandler public void test(EntityCombustEvent e) { if ( e.getEntity() instanceof Item ) { e.setCancelled( true ); } }

          That is why some code was failing.

          I was trying to make a plugin to stop spawners from being burned and I couldn't get it to work.

          I am guessing https://hub.spigotmc.org/stash/projects/SPIGOT/repos/craftbukkit/browse/nms-patches/Entity.patch#191

          Wyatt J Herkamp added a comment - That is why some code was failing. I was trying to make a plugin to stop spawners from being burned and I couldn't get it to work. I am guessing https://hub.spigotmc.org/stash/projects/SPIGOT/repos/craftbukkit/browse/nms-patches/Entity.patch#191

            Assignee:
            Unassigned
            Reporter:
            7kasper
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: