mirror of
				https://github.com/mcMMO-Dev/mcMMO.git
				synced 2025-10-31 09:13:43 +01:00 
			
		
		
		
	| @@ -28,6 +28,7 @@ Version 1.5.01-dev | ||||
|  = Fixed bug with setting custom names and lore in treasures config | ||||
|  = Fixed bug which would cause a NullPointerException with getFlowerAndGrassXp() | ||||
|  = Fixed bug which could cause and SQLException regarding the connection property 'maxReconnects'. | ||||
|  = Fixed bug where falling blocks were incorrectly tracked | ||||
|  ! Changed SecondaryAbilityEvent to implement Cancellable and it now gets fired for damage related secondary abilities | ||||
|  ! Changed the way mcMMO handles bonus damage, updated for the new damage event API | ||||
|  ! Changed player data saving. Save tasks are now asynchronous | ||||
|   | ||||
| @@ -109,7 +109,9 @@ public class EntityListener implements Listener { | ||||
|     public void onEntityChangeBlock(EntityChangeBlockEvent event) { | ||||
|         Block block = event.getBlock(); | ||||
|  | ||||
|         if (!BlockUtils.shouldBeWatched(block.getState())) { | ||||
|         // When the event is fired for the falling block that changes back to a normal block | ||||
|         // event.getBlock().getType() returns AIR | ||||
|         if (!BlockUtils.shouldBeWatched(block.getState()) && block.getType() != Material.AIR) { | ||||
|             return; | ||||
|         } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 TfT_02
					TfT_02