Skip to content

Commit

Permalink
2.1.84
Browse files Browse the repository at this point in the history
  • Loading branch information
nossr50 committed Jun 18, 2019
1 parent fa6995b commit 8363664
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
7 changes: 5 additions & 2 deletions Changelog.txt
@@ -1,8 +1,11 @@
Version 2.1.84
Added some code to make mcMMO more compatible with EpicSpawners

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
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
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
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.gmail.nossr50.mcMMO</groupId>
<artifactId>mcMMO</artifactId>
<version>2.1.83-SNAPSHOT</version>
<version>2.1.84</version>
<name>mcMMO</name>
<url>https://github.com/mcMMO-Dev/mcMMO</url>
<scm>
Expand Down
Expand Up @@ -325,7 +325,6 @@ public void onEntityDamageByEntity(EntityDamageByEntityEvent event) {
}
}


/* WORLD BLACKLIST CHECK */
if(WorldBlacklist.isWorldBlacklisted(event.getEntity().getWorld()))
return;
Expand Down Expand Up @@ -694,7 +693,7 @@ public void onEntityDeath(EntityDeathEvent event) {
* @param event
* The event to watch
*/
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
@EventHandler(priority = EventPriority.MONITOR)
public void onCreatureSpawn(CreatureSpawnEvent event) {
/* WORLD BLACKLIST CHECK */
if(WorldBlacklist.isWorldBlacklisted(event.getEntity().getWorld()))
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/com/gmail/nossr50/util/skills/CombatUtils.java
Expand Up @@ -616,7 +616,9 @@ else if (target instanceof Monster)
}
}

if (target.hasMetadata(mcMMO.entityMetadataKey)) {
if (target.hasMetadata(mcMMO.entityMetadataKey)
//Epic Spawners compatibility
|| target.hasMetadata("ES")) {
baseXP *= ExperienceConfig.getInstance().getSpawnedMobXpMultiplier();
}

Expand Down

0 comments on commit 8363664

Please sign in to comment.