From 9918d54574dfad323c4bb2c60496763ce392f064 Mon Sep 17 00:00:00 2001
From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com>
Date: Mon, 23 Jan 2023 01:46:54 -0500
Subject: [PATCH 1/5] Updated BedAura module description

Just updated the wording a little
---
 .../kotlin/com/lambda/client/module/modules/combat/BedAura.kt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/kotlin/com/lambda/client/module/modules/combat/BedAura.kt b/src/main/kotlin/com/lambda/client/module/modules/combat/BedAura.kt
index 924e75596..4eb7b146b 100644
--- a/src/main/kotlin/com/lambda/client/module/modules/combat/BedAura.kt
+++ b/src/main/kotlin/com/lambda/client/module/modules/combat/BedAura.kt
@@ -38,7 +38,7 @@ import java.util.*
 @CombatManager.CombatModule
 object BedAura : Module(
     name = "BedAura",
-    description = "Place bed and kills enemies",
+    description = "Places beds to kill enemies",
     category = Category.COMBAT,
     modulePriority = 70
 ) {
@@ -231,4 +231,4 @@ object BedAura : Module(
     private fun SafeClientEvent.resetRotation() {
         lastRotation = Vec2f(RotationUtils.normalizeAngle(player.rotationYaw), player.rotationPitch)
     }
-}
\ No newline at end of file
+}

From 1d08c0f09b44cf8e1dcc4a81288d6e1a11024093 Mon Sep 17 00:00:00 2001
From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com>
Date: Mon, 23 Jan 2023 01:52:45 -0500
Subject: [PATCH 2/5] Updated MidClickPearl module description

Shortened the description a little bit, removed automatically entirely from the sentence as I believe it is self explanatory without it.
---
 .../com/lambda/client/module/modules/combat/MidClickPearl.kt  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/kotlin/com/lambda/client/module/modules/combat/MidClickPearl.kt b/src/main/kotlin/com/lambda/client/module/modules/combat/MidClickPearl.kt
index 4a5d758ee..c20a8bb79 100644
--- a/src/main/kotlin/com/lambda/client/module/modules/combat/MidClickPearl.kt
+++ b/src/main/kotlin/com/lambda/client/module/modules/combat/MidClickPearl.kt
@@ -16,7 +16,7 @@ import org.lwjgl.input.Mouse
 
 object MidClickPearl : Module(
     name = "MidClickPearl",
-    description = "Throws a pearl automatically when you middle click in air",
+    description = "Throws a pearl upon middle clicking in the air",
     category = Category.COMBAT
 ) {
     private var prevSlot = -1
@@ -54,4 +54,4 @@ object MidClickPearl : Module(
             }
         }
     }
-}
\ No newline at end of file
+}

From c12599bd2820481cab93268f782ca64f7b5f1353 Mon Sep 17 00:00:00 2001
From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com>
Date: Mon, 23 Jan 2023 02:00:05 -0500
Subject: [PATCH 3/5] Updated module description

Just changed Modify to Modifies as that is a better word to use in this scenario, being the correct word used to refer to another person, or in this scenario a program/module!
---
 .../com/lambda/client/module/modules/render/BossStack.kt      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/kotlin/com/lambda/client/module/modules/render/BossStack.kt b/src/main/kotlin/com/lambda/client/module/modules/render/BossStack.kt
index 24b2b2961..3161c6a42 100644
--- a/src/main/kotlin/com/lambda/client/module/modules/render/BossStack.kt
+++ b/src/main/kotlin/com/lambda/client/module/modules/render/BossStack.kt
@@ -19,7 +19,7 @@ import kotlin.math.roundToInt
 
 object BossStack : Module(
     name = "BossStack",
-    description = "Modify the boss health GUI to take up less space",
+    description = "Modifies the boss health GUI to take up less space",
     category = Category.RENDER
 ) {
     private val mode by setting("Mode", BossStackMode.STACK)
@@ -132,4 +132,4 @@ object BossStack : Module(
         glColor4f(1.0f, 1.0f, 1.0f, 1.0f)
         mc.profiler.endSection()
     }
-}
\ No newline at end of file
+}

From 0e1c54b3f1bedce61b705f79e98f2746643fab0d Mon Sep 17 00:00:00 2001
From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com>
Date: Mon, 23 Jan 2023 02:06:01 -0500
Subject: [PATCH 4/5] Updated module description

Extremely minor, just swapped when to from. Just a better word overall to use in this context
---
 .../com/lambda/client/module/modules/movement/AntiHunger.kt   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/kotlin/com/lambda/client/module/modules/movement/AntiHunger.kt b/src/main/kotlin/com/lambda/client/module/modules/movement/AntiHunger.kt
index bbca6e3be..752d3f295 100644
--- a/src/main/kotlin/com/lambda/client/module/modules/movement/AntiHunger.kt
+++ b/src/main/kotlin/com/lambda/client/module/modules/movement/AntiHunger.kt
@@ -14,7 +14,7 @@ import net.minecraft.network.play.client.CPacketPlayer
  */
 object AntiHunger : Module(
     name = "AntiHunger",
-    description = "Reduces hunger lost when moving around",
+    description = "Reduces hunger lost from moving around",
     category = Category.MOVEMENT
 ) {
     private val cancelMovementState by setting("Cancel Movement State", true)
@@ -35,4 +35,4 @@ object AntiHunger : Module(
             }
         }
     }
-}
\ No newline at end of file
+}

From e76b477fe4bc5f376b62afb0c7ff11fde43b3188 Mon Sep 17 00:00:00 2001
From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com>
Date: Mon, 23 Jan 2023 02:08:37 -0500
Subject: [PATCH 5/5] Updated module description

Auto remount allows you to automatically remount not just a horse, but a boat, donkey, pig, and a few more entities, so I changed horse to rideable entities to better describe the function of the module.
---
 .../com/lambda/client/module/modules/movement/AutoRemount.kt  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/kotlin/com/lambda/client/module/modules/movement/AutoRemount.kt b/src/main/kotlin/com/lambda/client/module/modules/movement/AutoRemount.kt
index 1d67e1664..54f5093c5 100644
--- a/src/main/kotlin/com/lambda/client/module/modules/movement/AutoRemount.kt
+++ b/src/main/kotlin/com/lambda/client/module/modules/movement/AutoRemount.kt
@@ -13,7 +13,7 @@ import net.minecraftforge.fml.common.gameevent.TickEvent
 
 object AutoRemount : Module(
     name = "AutoRemount",
-    description = "Automatically remounts your horse",
+    description = "Automatically remounts your ridable entity",
     category = Category.MOVEMENT
 ) {
     private val boat by setting("Boats", true)
@@ -59,4 +59,4 @@ object AutoRemount : Module(
             || pig && entity is EntityPig && entity.saddled
             || llama && entity is EntityLlama)
     }
-}
\ No newline at end of file
+}