File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/meteordevelopment/meteorclient/systems/modules/player Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -89,9 +89,9 @@ public class AutoGap extends Module {
89
89
.build ()
90
90
);
91
91
92
- private final Setting <Boolean > potionsResistance = sgPotions .add (new BoolSetting .Builder ()
92
+ private final Setting <Boolean > potionsAbsorption = sgPotions .add (new BoolSetting .Builder ()
93
93
.name ("potions-absorption" )
94
- .description ("If it should eat when Resistance runs out. Requires E-Gaps." )
94
+ .description ("If it should eat when Absorption runs out. Requires E-Gaps." )
95
95
.defaultValue (false )
96
96
.visible (allowEgap ::get )
97
97
.build ()
@@ -264,7 +264,7 @@ private boolean shouldEatPotions() {
264
264
}
265
265
266
266
// Absorption
267
- if (potionsResistance .get () && !effects .containsKey (StatusEffects .RESISTANCE )) {
267
+ if (potionsAbsorption .get () && !effects .containsKey (StatusEffects .ABSORPTION )) {
268
268
requiresEGap = true ;
269
269
return true ;
270
270
}
You can’t perform that action at this time.
0 commit comments