mirror of
https://github.com/TotalFreedomMC/TF-ProjectKorra.git
synced 2025-02-11 11:40:40 +00:00
Clean up Conflicts
Conflicts: src/com/projectkorra/ProjectKorra/Ability/StockAbilities.java src/com/projectkorra/ProjectKorra/firebending/Lightning.java
This commit is contained in:
parent
1f041b8711
commit
35de391fce
3 changed files with 3 additions and 11 deletions
|
@ -18,11 +18,7 @@ public enum StockAbilities {
|
|||
AvatarState,
|
||||
|
||||
// Project Korra
|
||||
<<<<<<< HEAD
|
||||
Extraction, Smokescreen, Combustion, LavaSurge;
|
||||
=======
|
||||
Extraction, Smokescreen, Combustion, BreathSphere;
|
||||
>>>>>>> origin/master
|
||||
Extraction, Smokescreen, Combustion, LavaSurge, BreathSphere;
|
||||
|
||||
private enum AirbendingAbilities {
|
||||
AirBlast, AirBubble, AirShield, AirSuction, AirSwipe, Tornado, AirScooter, AirSpout, AirBurst, BreathSphere;
|
||||
|
|
|
@ -138,7 +138,6 @@ public class PKListener implements Listener {
|
|||
|
||||
if (event.getDamager() != null) {
|
||||
if (LavaWave.isBlockInWave(event.getDamager())) {
|
||||
Bukkit.getServer().broadcastMessage("Hit by LavaSurge Lava");
|
||||
event.setCancelled(true);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -159,19 +159,16 @@ public class Lightning {
|
|||
if (en instanceof LivingEntity) {
|
||||
if (Methods.isWater(en.getLocation().getBlock())) {
|
||||
Methods.damageEntity(player, entity, (int) damage);
|
||||
Methods.breakBreathbendingHold(entity);
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (distance > strikeradius) return;
|
||||
Methods.damageEntity(player, entity, (int) damage);
|
||||
Methods.breakBreathbendingHold(entity);
|
||||
}
|
||||
hitentities.add(entity);
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
Methods.damageEntity(player, entity, (int) damage);
|
||||
Methods.breakBreathbendingHold(entity);
|
||||
>>>>>>> origin/master
|
||||
}
|
||||
|
||||
public static boolean isNearbyChannel(Location location) {
|
||||
|
|
Loading…
Reference in a new issue