mirror of
				https://github.com/mcMMO-Dev/mcMMO.git
				synced 2025-11-03 18:43:43 +01:00 
			
		
		
		
	2.1.84
This commit is contained in:
		@@ -1,8 +1,11 @@
 | 
				
			|||||||
 | 
					Version 2.1.84
 | 
				
			||||||
 | 
					    Added some code to make mcMMO more compatible with EpicSpawners
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Version 2.1.83
 | 
					Version 2.1.83
 | 
				
			||||||
    Updated hu_HU locale (thanks andris155)
 | 
					    You can no longer set party members on fire with your bow
 | 
				
			||||||
    (FIX) Arrow Retrieval will no longer work with piercing enchant on crossbows
 | 
					    (FIX) Arrow Retrieval will no longer work with piercing enchant on crossbows
 | 
				
			||||||
    WG Flags should now correctly recognize when a projectile belongs to a player and respect flag settings
 | 
					    WG Flags should now correctly recognize when a projectile belongs to a player and respect flag settings
 | 
				
			||||||
    You can no longer set party members on fire with your bow
 | 
					    Updated hu_HU locale (thanks andris155)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Version 2.1.82
 | 
					Version 2.1.82
 | 
				
			||||||
    Added new WG flag 'mcmmo-hardcore' if set to negative players will not be penalized by hardcore mode (if hardcore mode is enabled) it defaults to true
 | 
					    Added new WG flag 'mcmmo-hardcore' if set to negative players will not be penalized by hardcore mode (if hardcore mode is enabled) it defaults to true
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										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.83-SNAPSHOT</version>
 | 
					    <version>2.1.84</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>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -325,7 +325,6 @@ public class EntityListener implements Listener {
 | 
				
			|||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
        /* WORLD BLACKLIST CHECK */
 | 
					        /* WORLD BLACKLIST CHECK */
 | 
				
			||||||
        if(WorldBlacklist.isWorldBlacklisted(event.getEntity().getWorld()))
 | 
					        if(WorldBlacklist.isWorldBlacklisted(event.getEntity().getWorld()))
 | 
				
			||||||
            return;
 | 
					            return;
 | 
				
			||||||
@@ -694,7 +693,7 @@ public class EntityListener implements Listener {
 | 
				
			|||||||
     * @param event
 | 
					     * @param event
 | 
				
			||||||
     *            The event to watch
 | 
					     *            The event to watch
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    @EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
 | 
					    @EventHandler(priority = EventPriority.MONITOR)
 | 
				
			||||||
    public void onCreatureSpawn(CreatureSpawnEvent event) {
 | 
					    public void onCreatureSpawn(CreatureSpawnEvent event) {
 | 
				
			||||||
        /* WORLD BLACKLIST CHECK */
 | 
					        /* WORLD BLACKLIST CHECK */
 | 
				
			||||||
        if(WorldBlacklist.isWorldBlacklisted(event.getEntity().getWorld()))
 | 
					        if(WorldBlacklist.isWorldBlacklisted(event.getEntity().getWorld()))
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -616,7 +616,9 @@ public final class CombatUtils {
 | 
				
			|||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            if (target.hasMetadata(mcMMO.entityMetadataKey)) {
 | 
					            if (target.hasMetadata(mcMMO.entityMetadataKey)
 | 
				
			||||||
 | 
					                    //Epic Spawners compatibility
 | 
				
			||||||
 | 
					                    || target.hasMetadata("ES")) {
 | 
				
			||||||
                baseXP *= ExperienceConfig.getInstance().getSpawnedMobXpMultiplier();
 | 
					                baseXP *= ExperienceConfig.getInstance().getSpawnedMobXpMultiplier();
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user