Recommit jar file.

This commit is contained in:
sigonasr2 2016-08-27 18:01:34 -05:00
parent 684ca61442
commit 9b65d49131
3 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -1138,7 +1138,7 @@ public class TwosideKeeper extends JavaPlugin implements Listener {
}
if (GenericFunctions.isArtifactEquip(p.getEquipment().getItemInMainHand()) &&
p.getEquipment().getItemInMainHand().getEnchantmentLevel(Enchantment.LUCK)<=3) {
//Change the tool to Stone. If possible.
//Change the tool to Stone. If possible.
if (p.getEquipment().getItemInMainHand().getType().toString().contains("SWORD")) {
p.getEquipment().getItemInMainHand().setType(Material.STONE_SWORD);
}else

View File

@ -29,7 +29,7 @@ public final class TwosideKeeperAPI {
public static void givePlayerMoney(Player p, double amt) {
TwosideKeeper.givePlayerMoney(p, amt);
}
public static void givePlayerMoney(String p, double amt) {
public static void givePlayerMoney(String p, double amt) {
TwosideKeeper.givePlayerMoney(p, amt);
}
public static double getPlayerMoney(Player p) {