mirror of
				https://github.com/mcMMO-Dev/mcMMO.git
				synced 2025-11-03 10:33:43 +01:00 
			
		
		
		
	Fix CraftBukkit / Bukkit bug regarding event.getCurrentItem() throwing
an ArrayIndexOutOfBounds error.
This commit is contained in:
		@@ -153,6 +153,8 @@ public class InventoryListener implements Listener {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    @EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
 | 
					    @EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
 | 
				
			||||||
    public void onInventoryClickEvent(InventoryClickEvent event) {
 | 
					    public void onInventoryClickEvent(InventoryClickEvent event) {
 | 
				
			||||||
        SkillUtils.removeAbilityBuff(event.getCurrentItem());
 | 
					        if (event.getSlot() >= 0) {
 | 
				
			||||||
 | 
					            SkillUtils.removeAbilityBuff(event.getCurrentItem());
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user