mirror of
				https://github.com/mcMMO-Dev/mcMMO.git
				synced 2025-11-04 11:03:43 +01:00 
			
		
		
		
	Fix bug in previous dev build that would make mcMMO never drop items...
This commit is contained in:
		@@ -344,7 +344,7 @@ public final class Misc {
 | 
			
		||||
     */
 | 
			
		||||
    public static void dropItem(Location location, ItemStack itemStack) {
 | 
			
		||||
 | 
			
		||||
        if (itemStack.getType() != null || itemStack.getType() == Material.AIR) {
 | 
			
		||||
        if (itemStack.getType() == null || itemStack.getType() == Material.AIR) {
 | 
			
		||||
            return;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user