From 3a2a0436f6c6084bd1fe9061eaf7dc3706f21df3 Mon Sep 17 00:00:00 2001 From: shmeeps Date: Fri, 25 May 2018 14:20:37 -0500 Subject: [PATCH] Capitalize world map configuration names (#3301) - Capitalize names for spellbooks in world map configuration - Fix description typos --- .../client/plugins/worldmap/WorldMapConfig.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/worldmap/WorldMapConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/worldmap/WorldMapConfig.java index 4c767ead97..b8bf487f80 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/worldmap/WorldMapConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/worldmap/WorldMapConfig.java @@ -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()