Removed 2 lines used for debug.

This commit is contained in:
DroppingAnvil 2019-09-15 17:10:15 -05:00
parent 26010c6ba2
commit 1e7bd8ff35
1 changed files with 0 additions and 2 deletions

View File

@ -177,12 +177,10 @@ public class UpgradesListener implements Listener {
if (FPlayers.getInstance().getByPlayer(e.getPlayer()) == null) {
return;
}
System.out.print(e.getItem().toString());
if (e.getItem().getType().toString().contains("LEGGINGS") || e.getItem().getType().toString().contains("CHESTPLATE") || e.getItem().getType().toString().contains("HELMET") || e.getItem().getType().toString().contains("BOOTS")) {
int lvl = FPlayers.getInstance().getByPlayer(e.getPlayer()).getFaction().getUpgrade(UpgradeType.REINFORCEDARMOR);
double drop = FactionsPlugin.getInstance().getConfig().getDouble("fupgrades.MainMenu.Armor.Armor-HP-Drop.level-" + lvl);
int newDamage = (int) Math.round(e.getDamage() - e.getDamage() * drop);
System.out.print(newDamage);
e.setDamage(newDamage);
}
}