Corrected misspelling of "Sword of Lightning" as "Sword of Lighting." Any existing lightning swords that use the incorrect spelling will no longer function as lightning swords as of this fix.

This commit is contained in:
David Berdik 2016-11-19 18:21:24 -05:00
parent 1dc2cb3d39
commit c2215184bf
2 changed files with 3 additions and 3 deletions

View File

@ -193,8 +193,8 @@ public class Temple extends Core {
{
item = new ItemStack(Material.DIAMOND_SWORD);
newLore.add("Herobrine's Artifact");
newLore.add("Sword of Lighting");
item = ItemName.setNameAndLore(item, "Sword of Lighting", newLore);
newLore.add("Sword of Lightning");
item = ItemName.setNameAndLore(item, "Sword of Lightning", newLore);
item.addEnchantment(Enchantment.KNOCKBACK, 2);
item.addEnchantment(Enchantment.DAMAGE_ALL, 2);
item.addEnchantment(Enchantment.DURABILITY, 3);

View File

@ -43,7 +43,7 @@ public class EntityListener implements Listener {
equalsLore.add("Herobrine's Artifact");
equalsLore.add("Bow of Teleporting");
equalsLoreS.add("Herobrine's Artifact");
equalsLoreS.add("Sword of Lighting");
equalsLoreS.add("Sword of Lightning");
}
@EventHandler