Fixed character encoding issue with the apostrophe on the "Herobrine's Artifact" lore on items dropped by Herobrine

This commit is contained in:
David Berdik 2016-01-09 22:14:53 -05:00
parent ab54ecdd28
commit 4139a7ea55

View File

@ -183,7 +183,7 @@ public class Temple extends Core {
if ((chance < 4) && (HerobrineAI.getPluginCore().getConfigDB().UseArtifactBow))
{
item = new ItemStack(Material.BOW);
newLore.add("Herobrine´s artifact");
newLore.add("Herobrine's Artifact");
newLore.add("Bow of Teleporting");
item = ItemName.setNameAndLore(item, "Bow of Teleporting", newLore);
item.addEnchantment(Enchantment.ARROW_FIRE, 1);
@ -192,7 +192,7 @@ public class Temple extends Core {
else if ((chance < 8) && (HerobrineAI.getPluginCore().getConfigDB().UseArtifactSword))
{
item = new ItemStack(Material.DIAMOND_SWORD);
newLore.add("Herobrine´s artifact");
newLore.add("Herobrine's Artifact");
newLore.add("Sword of Lighting");
item = ItemName.setNameAndLore(item, "Sword of Lighting", newLore);
item.addEnchantment(Enchantment.KNOCKBACK, 2);
@ -202,7 +202,7 @@ public class Temple extends Core {
else if ((chance < 12) && (HerobrineAI.getPluginCore().getConfigDB().UseArtifactApple))
{
item = new ItemStack(Material.GOLDEN_APPLE);
newLore.add("Herobrine´s artifact");
newLore.add("Herobrine's Artifact");
newLore.add("Apple of Death");
item = ItemName.setNameAndLore(item, "Apple of Death", newLore);
}