Skip to content

Commit f974c66

Browse files
kaz2700KazutoXD
andauthored
AutoOffhand: Set maximum hp threshold to 36 (#474)
This is because when you eat a gapple you have 36 max health :P Co-authored-by: KazutoXD <[email protected]>
1 parent fbeab41 commit f974c66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/com/lambda/client/module/modules/combat/AutoOffhand.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ object AutoOffhand : Module(
3737
private val type by setting("Type", Type.TOTEM)
3838

3939
// Totem
40-
private val hpThreshold by setting("Hp Threshold", 5f, 1f..20f, 0.5f, { type == Type.TOTEM })
40+
private val hpThreshold by setting("Hp Threshold", 5f, 1f..36f, 0.5f, { type == Type.TOTEM })
4141
private val bindTotem by setting("Bind Totem", Bind(), { type == Type.TOTEM })
4242
private val checkDamage by setting("Check Damage", true, { type == Type.TOTEM })
4343
private val mob by setting("Mob", true, { type == Type.TOTEM && checkDamage })

0 commit comments

Comments
 (0)