Clean up Conflicts

Conflicts:
	src/com/projectkorra/ProjectKorra/Ability/StockAbilities.java
	src/com/projectkorra/ProjectKorra/firebending/Lightning.java
This commit is contained in:
MistPhizzle 2014-08-24 10:49:13 -04:00
parent 1f041b8711
commit 35de391fce
3 changed files with 3 additions and 11 deletions

View file

@ -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;

View file

@ -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);
}
}

View file

@ -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) {