mirror of
https://github.com/PikaMug/Quests.git
synced 2024-12-26 11:07:49 +01:00
Update enchantmens, fixes #26. Bump version number
This commit is contained in:
parent
e0e6222bb0
commit
acfc5c4bc6
2
pom.xml
2
pom.xml
@ -3,7 +3,7 @@
|
||||
|
||||
<groupId>me.blackvein.quests</groupId>
|
||||
<artifactId>quests</artifactId>
|
||||
<version>2.8.7</version>
|
||||
<version>2.8.8</version>
|
||||
<name>quests</name>
|
||||
<url>https://github.com/FlyingPikachu/Quests/</url>
|
||||
<packaging>jar</packaging>
|
||||
|
@ -1595,7 +1595,7 @@ public class Quester {
|
||||
public static String enchantmentString(Enchantment e) {
|
||||
if (Lang.get("ENCHANTMENT_" + e.getName()).equals("NULL")) {
|
||||
Bukkit.getLogger().warning(e.getName() + " was not found in Lang.yml, please ask the developer to " + "update the file or simply add an entry for the enchantment");
|
||||
return "ENCHANTMENT_" + e.getName();
|
||||
return e.getName().toLowerCase().replaceAll("_", " ");
|
||||
}
|
||||
return (Lang.get("ENCHANTMENT_" + e.getName()));
|
||||
}
|
||||
|
@ -310,7 +310,7 @@ public class ItemStackPrompt extends FixedSetPrompt {
|
||||
for (Enchantment e : Enchantment.values()) {
|
||||
text += ChatColor.GREEN + Quester.prettyEnchantmentString(e) + ", ";
|
||||
}
|
||||
text = text.substring(0, text.length() - 1);
|
||||
text = text.substring(0, text.length() - 2);
|
||||
return text + "\n" + ChatColor.YELLOW + Lang.get("itemCreateEnterEnch");
|
||||
}
|
||||
|
||||
|
@ -840,6 +840,7 @@ public class Lang {
|
||||
langMap.put("ENCHANTMENT_ARROW_FIRE", "Flame");
|
||||
langMap.put("ENCHANTMENT_ARROW_INFINITE", "Infinity");
|
||||
langMap.put("ENCHANTMENT_ARROW_KNOCKBACK", "Punch");
|
||||
langMap.put("ENCHANTMENT_BINDING_CURSE", "BindingCurse");
|
||||
langMap.put("ENCHANTMENT_DAMAGE_ALL", "Sharpness");
|
||||
langMap.put("ENCHANTMENT_DAMAGE_ARTHROPODS", "BaneOfArthropods");
|
||||
langMap.put("ENCHANTMENT_DEPTH_STRIDER", "DepthStrider");
|
||||
@ -861,7 +862,9 @@ public class Lang {
|
||||
langMap.put("ENCHANTMENT_PROTECTION_FIRE", "FireProtection");
|
||||
langMap.put("ENCHANTMENT_PROTECTION_PROJECTILE", "ProjectileProtection");
|
||||
langMap.put("ENCHANTMENT_SILK_TOUCH", "SilkTouch");
|
||||
langMap.put("ENCHANTMENT_SWEEPING", "Sweeping");
|
||||
langMap.put("ENCHANTMENT_THORNS", "Thorns");
|
||||
langMap.put("ENCHANTMENT_VANISHING_CURSE", "VanishingCurse");
|
||||
langMap.put("ENCHANTMENT_WATER_WORKER", "AquaAffinity");
|
||||
// Colors
|
||||
langMap.put("COLOR_BLACK", "Black");
|
||||
|
Loading…
Reference in New Issue
Block a user