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