Capitalize world map configuration names (#3301)

- Capitalize names for spellbooks in world map configuration
- Fix description typos
This commit is contained in:
shmeeps
2018-05-25 14:20:37 -05:00
committed by Tomas Slusny
parent 3a6af37959
commit 3a2a0436f6

View File

@@ -82,8 +82,8 @@ public interface WorldMapConfig extends Config
@ConfigItem(
keyName = WorldMapPlugin.CONFIG_KEY_NORMAL_TELEPORT_ICON,
name = "Show standard spellbook destionations",
description = "Show icons at the destinations for teleports in the standard spellbook",
name = "Show Standard Spellbook destinations",
description = "Show icons at the destinations for teleports in the Standard Spellbook",
position = 5
)
default boolean normalTeleportIcon()
@@ -93,8 +93,8 @@ public interface WorldMapConfig extends Config
@ConfigItem(
keyName = WorldMapPlugin.CONFIG_KEY_ANCIENT_TELEPORT_ICON,
name = "Show ancient magicks destionations",
description = "Show icons at the destinations for teleports in the ancient spellbook",
name = "Show Ancient Magicks destinations",
description = "Show icons at the destinations for teleports in the Ancient Spellbook",
position = 6
)
default boolean ancientTeleportIcon()
@@ -104,8 +104,8 @@ public interface WorldMapConfig extends Config
@ConfigItem(
keyName = WorldMapPlugin.CONFIG_KEY_LUNAR_TELEPORT_ICON,
name = "Show lunar spellbook destionations",
description = "Show icons at the destinations for teleports in the lunar spellbook",
name = "Show Lunar Spellbook destinations",
description = "Show icons at the destinations for teleports in the Lunar Spellbook",
position = 7
)
default boolean lunarTeleportIcon()
@@ -115,8 +115,8 @@ public interface WorldMapConfig extends Config
@ConfigItem(
keyName = WorldMapPlugin.CONFIG_KEY_ARCEUUS_TELEPORT_ICON,
name = "Show arceuus spellbook destionations",
description = "Show icons at the destinations for teleports in the arceuus spellbook",
name = "Show Arceuus Spellbook destinations",
description = "Show icons at the destinations for teleports in the Arceuus Spellbook",
position = 8
)
default boolean arceuusTeleportIcon()