Fix missing rename in EngineV19.
This commit is contained in:
parent
dc1118e328
commit
eeaf2d9346
@ -1,10 +1,8 @@
|
|||||||
package com.massivecraft.factions.integration.V19;
|
package com.massivecraft.factions.integration.V19;
|
||||||
|
|
||||||
import com.massivecraft.factions.Factions;
|
import java.util.ArrayList;
|
||||||
import com.massivecraft.factions.engine.EngineCombat;
|
import java.util.List;
|
||||||
import com.massivecraft.massivecore.Engine;
|
|
||||||
import com.massivecraft.massivecore.MassivePlugin;
|
|
||||||
import com.massivecraft.massivecore.util.MUtil;
|
|
||||||
import org.bukkit.entity.Entity;
|
import org.bukkit.entity.Entity;
|
||||||
import org.bukkit.entity.LivingEntity;
|
import org.bukkit.entity.LivingEntity;
|
||||||
import org.bukkit.event.EventHandler;
|
import org.bukkit.event.EventHandler;
|
||||||
@ -14,8 +12,11 @@ import org.bukkit.event.entity.EntityDamageByEntityEvent;
|
|||||||
import org.bukkit.event.entity.EntityDamageEvent;
|
import org.bukkit.event.entity.EntityDamageEvent;
|
||||||
import org.bukkit.projectiles.ProjectileSource;
|
import org.bukkit.projectiles.ProjectileSource;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import com.massivecraft.factions.Factions;
|
||||||
import java.util.List;
|
import com.massivecraft.factions.engine.EngineCanCombatHappen;
|
||||||
|
import com.massivecraft.massivecore.Engine;
|
||||||
|
import com.massivecraft.massivecore.MassivePlugin;
|
||||||
|
import com.massivecraft.massivecore.util.MUtil;
|
||||||
|
|
||||||
public class EngineV19 extends Engine
|
public class EngineV19 extends Engine
|
||||||
{
|
{
|
||||||
@ -56,7 +57,7 @@ public class EngineV19 extends Engine
|
|||||||
{
|
{
|
||||||
EntityDamageByEntityEvent sub = new EntityDamageByEntityEvent(thrower, affectedEntity, EntityDamageEvent.DamageCause.CUSTOM, 0D);
|
EntityDamageByEntityEvent sub = new EntityDamageByEntityEvent(thrower, affectedEntity, EntityDamageEvent.DamageCause.CUSTOM, 0D);
|
||||||
// Notification disabled due to the iterating nature of effect clouds.
|
// Notification disabled due to the iterating nature of effect clouds.
|
||||||
if (EngineCombat.get().canCombatDamageHappen(sub, false)) continue;
|
if (EngineCanCombatHappen.get().canCombatDamageHappen(sub, false)) continue;
|
||||||
|
|
||||||
affectedList.add(affectedEntity);
|
affectedList.add(affectedEntity);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user