mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
move namefix to monitor
This commit is contained in:
parent
8fc3643803
commit
e8021e81e6
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.125</version>
|
<version>2.1.126-SNAPSHOT</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>
|
||||||
|
@ -410,6 +410,7 @@ public class EntityListener implements Listener {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This was put here to solve a plugin conflict with a mod called Project Korra
|
* This was put here to solve a plugin conflict with a mod called Project Korra
|
||||||
* Project Korra sends out a damage event with exactly 0 damage
|
* Project Korra sends out a damage event with exactly 0 damage
|
||||||
@ -425,20 +426,21 @@ public class EntityListener implements Listener {
|
|||||||
|
|
||||||
CombatUtils.processCombatAttack(event, attacker, target);
|
CombatUtils.processCombatAttack(event, attacker, target);
|
||||||
CombatUtils.handleHealthbars(attacker, target, event.getFinalDamage(), plugin);
|
CombatUtils.handleHealthbars(attacker, target, event.getFinalDamage(), plugin);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = false)
|
||||||
|
public void onEntityDamageMonitor(EntityDamageByEntityEvent entityDamageEvent) {
|
||||||
|
if(entityDamageEvent.getEntity() instanceof LivingEntity) {
|
||||||
|
LivingEntity livingEntity = (LivingEntity) entityDamageEvent.getEntity();
|
||||||
|
|
||||||
|
if(entityDamageEvent.getFinalDamage() >= livingEntity.getHealth()) {
|
||||||
|
|
||||||
|
/*
|
||||||
* This sets entity names back to whatever they are supposed to be
|
* This sets entity names back to whatever they are supposed to be
|
||||||
*/
|
*/
|
||||||
if(event.getFinalDamage() >= target.getHealth())
|
CombatUtils.fixNames(livingEntity);
|
||||||
{
|
|
||||||
if(attacker instanceof LivingEntity)
|
|
||||||
{
|
|
||||||
CombatUtils.fixNames((LivingEntity) attacker);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
CombatUtils.fixNames(target);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean checkParties(Cancellable event, Player defendingPlayer, Player attackingPlayer) {
|
public boolean checkParties(Cancellable event, Player defendingPlayer, Player attackingPlayer) {
|
||||||
|
Loading…
Reference in New Issue
Block a user