mirror of
				https://github.com/mcMMO-Dev/mcMMO.git
				synced 2025-11-04 02:53:43 +01:00 
			
		
		
		
	2.1.75
This commit is contained in:
		@@ -1,3 +1,6 @@
 | 
				
			|||||||
 | 
					Version 2.1.75
 | 
				
			||||||
 | 
					    Fixed a bug that prevented Fortune from working correctly if a Double Drop was triggered
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Version 2.1.74
 | 
					Version 2.1.74
 | 
				
			||||||
    Fixed a NPE that could occur during certain events if a skill was disabled in coreskills.yml (Sorry!)
 | 
					    Fixed a NPE that could occur during certain events if a skill was disabled in coreskills.yml (Sorry!)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										2
									
								
								pom.xml
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								pom.xml
									
									
									
									
									
								
							@@ -2,7 +2,7 @@
 | 
				
			|||||||
    <modelVersion>4.0.0</modelVersion>
 | 
					    <modelVersion>4.0.0</modelVersion>
 | 
				
			||||||
    <groupId>com.gmail.nossr50.mcMMO</groupId>
 | 
					    <groupId>com.gmail.nossr50.mcMMO</groupId>
 | 
				
			||||||
    <artifactId>mcMMO</artifactId>
 | 
					    <artifactId>mcMMO</artifactId>
 | 
				
			||||||
    <version>2.1.74</version>
 | 
					    <version>2.1.75</version>
 | 
				
			||||||
    <name>mcMMO</name>
 | 
					    <name>mcMMO</name>
 | 
				
			||||||
    <url>https://github.com/mcMMO-Dev/mcMMO</url>
 | 
					    <url>https://github.com/mcMMO-Dev/mcMMO</url>
 | 
				
			||||||
    <scm>
 | 
					    <scm>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -76,11 +76,12 @@ public class BlockListener implements Listener {
 | 
				
			|||||||
                for (int i = 0; i < bonusCount; i++) {
 | 
					                for (int i = 0; i < bonusCount; i++) {
 | 
				
			||||||
                    event.getBlock().getWorld().dropItemNaturally(event.getBlockState().getLocation(), is);
 | 
					                    event.getBlock().getWorld().dropItemNaturally(event.getBlockState().getLocation(), is);
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        if(event.getBlock().hasMetadata(mcMMO.BONUS_DROPS_METAKEY))
 | 
				
			||||||
            event.getBlock().removeMetadata(mcMMO.BONUS_DROPS_METAKEY, plugin);
 | 
					            event.getBlock().removeMetadata(mcMMO.BONUS_DROPS_METAKEY, plugin);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /*@EventHandler(priority = EventPriority.HIGHEST, ignoreCancelled = true)
 | 
					    /*@EventHandler(priority = EventPriority.HIGHEST, ignoreCancelled = true)
 | 
				
			||||||
    public void onBlockDropItemEvent(BlockDropItemEvent event)
 | 
					    public void onBlockDropItemEvent(BlockDropItemEvent event)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -73,8 +73,6 @@ public class MiningManager extends SkillManager {
 | 
				
			|||||||
            return;
 | 
					            return;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        Material material = blockState.getType();
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        if (mcMMOPlayer.getAbilityMode(skill.getAbility())) {
 | 
					        if (mcMMOPlayer.getAbilityMode(skill.getAbility())) {
 | 
				
			||||||
            SkillUtils.handleDurabilityChange(getPlayer().getInventory().getItemInMainHand(), Config.getInstance().getAbilityToolDamage());
 | 
					            SkillUtils.handleDurabilityChange(getPlayer().getInventory().getItemInMainHand(), Config.getInstance().getAbilityToolDamage());
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user