Remove testing messages

This commit is contained in:
Benford 2016-03-28 23:06:55 -04:00
parent 041a003ff1
commit b251971e2f
2 changed files with 0 additions and 2 deletions

View file

@ -46,7 +46,6 @@ public class EarthArmor extends EarthAbility {
if (hasAbility(player, PlantArmor.class)) {
PlantArmor abil = getAbility(player, PlantArmor.class);
abil.remove();
player.sendMessage("Previous ability reverted");
}
this.formed = false;

View file

@ -51,7 +51,6 @@ public class PlantArmor extends PlantAbility {
if (hasAbility(player, EarthArmor.class)) {
EarthArmor abil = getAbility(player, EarthArmor.class);
abil.remove();
player.sendMessage("Previous armor reverted");
}
block = getPlantSourceBlock(player, range, true);