From ee536ae7eb1e4a66ee728dc04e2e9bee3bad9b52 Mon Sep 17 00:00:00 2001 From: Baitinq Date: Sun, 15 Jan 2023 00:57:35 +0100 Subject: [PATCH 1/2] AutoArmor: Add "Allow Elytra" setting This patch introduces the "Allow Elytra" setting in the AutoArmor module, which lets the user chose whether AutoArmor will replace their equipped elytra with a chestplate (allowElytra = false) or not (allowElytra = true) :^) --- .../com/lambda/client/module/modules/combat/AutoArmor.kt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/com/lambda/client/module/modules/combat/AutoArmor.kt b/src/main/kotlin/com/lambda/client/module/modules/combat/AutoArmor.kt index 752943522..0d63f3c79 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/combat/AutoArmor.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/combat/AutoArmor.kt @@ -23,6 +23,8 @@ object AutoArmor : Module( category = Category.COMBAT, modulePriority = 500 ) { + private val allowElytra by setting("Allow Elytra", false, description = "If activated it will not replace an equipped elytra with a chestplate") + init { safeListener { // store slots and values of best armor pieces, initialize with currently equipped armor @@ -37,8 +39,8 @@ object AutoArmor : Module( val armorType = item.armorType.index - // Skip if item is chestplate and we have elytra equipped - if (armorType == 2 && player.inventory.armorInventory[2].item == Items.ELYTRA) continue + // Skip if allowElytra is activated, item is chestplate and we have elytra equipped + if (allowElytra && armorType == 2 && player.inventory.armorInventory[2].item == Items.ELYTRA) continue val armorValue = getArmorValue(itemStack) if (armorValue > bestArmors[armorType].second) { From 706815deac8fcaee999ae257ce3da23aaa8ead1e Mon Sep 17 00:00:00 2001 From: Constructor Date: Tue, 17 Jan 2023 00:18:25 +0100 Subject: [PATCH 2/2] Fix grammar --- .../com/lambda/client/module/modules/combat/AutoArmor.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/com/lambda/client/module/modules/combat/AutoArmor.kt b/src/main/kotlin/com/lambda/client/module/modules/combat/AutoArmor.kt index 0d63f3c79..13b6743d9 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/combat/AutoArmor.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/combat/AutoArmor.kt @@ -19,7 +19,7 @@ import net.minecraftforge.fml.common.gameevent.TickEvent object AutoArmor : Module( name = "AutoArmor", - description = "Automatically equips armour", + description = "Automatically equips armor", category = Category.COMBAT, modulePriority = 500 ) { @@ -39,7 +39,7 @@ object AutoArmor : Module( val armorType = item.armorType.index - // Skip if allowElytra is activated, item is chestplate and we have elytra equipped + // Skip if allowElytra is activated, item is chestplate, and we have elytra equipped if (allowElytra && armorType == 2 && player.inventory.armorInventory[2].item == Items.ELYTRA) continue val armorValue = getArmorValue(itemStack)