From 1fa81bc78fcb48c96693996a36b7c38911a26563 Mon Sep 17 00:00:00 2001 From: NetheriteMiner <88792142+NetheriteMiner@users.noreply.github.com> Date: Wed, 15 Mar 2023 13:26:30 -0400 Subject: Conciseness Changed "summoning mobs" to "summons" because it's neater and I think that's how the game refers to them anyway. --- .../java/at/hannibal2/skyhanni/config/features/Summonings.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Summonings.java b/src/main/java/at/hannibal2/skyhanni/config/features/Summonings.java index 88253fb0a..7a35405dc 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Summonings.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Summonings.java @@ -8,7 +8,7 @@ public class Summonings { @Expose @ConfigOption(name = "Summoning Soul Display", desc = "Show the name of dropped summoning souls laying on the ground. " + - "§cNot working in Dungeon if Skytils' 'Hide Non-Starred Mobs Nametags' feature is enabled!") + "§cNot working in dungeons if Skytils' 'Hide Non-Starred Mobs Nametags' feature is enabled!") @ConfigEditorBoolean public boolean summoningSoulDisplay = false; @@ -18,7 +18,7 @@ public class Summonings { public boolean summoningMob = false; @Expose - @ConfigOption(name = "Summoning Mob Display", desc = "Show the health of your spawned summoning mobs") + @ConfigOption(name = "Summoning Mob Display", desc = "Show the health of your spawned summons.") @ConfigEditorBoolean @ConfigAccordionId(id = 0) public boolean summoningMobDisplay = false; @@ -30,13 +30,13 @@ public class Summonings { public Position summoningMobDisplayPos = new Position(10, 10, false, true); @Expose - @ConfigOption(name = "Summoning Mob Nametag", desc = "Hide the nametag of your spawned summoning mobs") + @ConfigOption(name = "Summoning Mob Nametag", desc = "Hide the nametag of your spawned summons.") @ConfigEditorBoolean @ConfigAccordionId(id = 0) public boolean summoningMobHideNametag = false; @Expose - @ConfigOption(name = "Summoning Mob Color", desc = "Marks own summoning mobs green") + @ConfigOption(name = "Summoning Mob Color", desc = "Marks own summons green.") @ConfigEditorBoolean @ConfigAccordionId(id = 0) public boolean summoningMobColored = false; -- cgit