Various Fixes

Fix earthsmash turning everything to dirt
Fix waterspout not letting users fast swim
This commit is contained in:
jedk1 2016-02-03 16:11:13 +00:00
parent 68b7116bc4
commit 28eaace99b
2 changed files with 2 additions and 2 deletions

View file

@ -499,7 +499,7 @@ public class EarthSmash extends EarthAbility {
public Material selectMaterialForRepresenter(Material mat) {
Material tempMat = selectMaterial(mat);
Random rand = new Random();
if (!isEarthbendable(tempMat) || !isMetalbendable(tempMat)) {
if (!isEarthbendable(tempMat) && !isMetalbendable(tempMat)) {
if (currentBlocks.size() < 1) {
return Material.DIRT;
} else {

View file

@ -310,7 +310,7 @@ public class WaterSpout extends WaterAbility {
@Override
public boolean isSneakAbility() {
return true;
return false;
}
@Override