Skip to content

Commit 4cd2afc

Browse files
Sync LunarClient Mods & Options (#262)
* Sync LunarClient Mods & Options * Update version tags to 1.2.4 --------- Co-authored-by: LunarClient Bot <lc-bot@moonsworth.com>
1 parent 7024a71 commit 4cd2afc

6 files changed

Lines changed: 36 additions & 19 deletions

File tree

api/src/main/java/com/lunarclient/apollo/mods/impl/ModOverlayMod.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public final class ModOverlayMod {
4242
*/
4343
public static final SimpleOption<Boolean> ENABLED = SimpleOption.<Boolean>builder()
4444
.node("overlay-mod", "enabled").type(TypeToken.get(Boolean.class))
45-
.defaultValue(true)
45+
.defaultValue(false)
4646
.notifyClient()
4747
.build();
4848

api/src/main/java/com/lunarclient/apollo/mods/impl/ModSkyblock.java

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -443,6 +443,17 @@ public final class ModSkyblock {
443443
.notifyClient()
444444
.build();
445445

446+
/**
447+
* No documentation available.
448+
*
449+
* @since 1.1.6
450+
*/
451+
public static final SimpleOption<Boolean> SKY_BLOCK_FINISHED_COMMISSIONS = SimpleOption.<Boolean>builder()
452+
.node("skyblock", "sky-block-finished-commissions").type(TypeToken.get(Boolean.class))
453+
.defaultValue(false)
454+
.notifyClient()
455+
.build();
456+
446457
/**
447458
* No documentation available.
448459
*
@@ -457,10 +468,10 @@ public final class ModSkyblock {
457468
/**
458469
* No documentation available.
459470
*
460-
* @since 1.1.6
471+
* @since 1.2.4
461472
*/
462-
public static final SimpleOption<Boolean> SKY_BLOCK_FINISHED_COMMISSIONS = SimpleOption.<Boolean>builder()
463-
.node("skyblock", "sky-block-finished-commissions").type(TypeToken.get(Boolean.class))
473+
public static final SimpleOption<Boolean> SKY_BLOCK_METAL_DETECTOR_LINE = SimpleOption.<Boolean>builder()
474+
.node("skyblock", "sky-block-metal-detector-line").type(TypeToken.get(Boolean.class))
464475
.defaultValue(false)
465476
.notifyClient()
466477
.build();

api/src/main/java/com/lunarclient/apollo/mods/impl/ModTierTagger.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ public final class ModTierTagger {
9494
*
9595
* @since 1.1.9
9696
*/
97-
public static final SimpleOption<Boolean> SHOW_RETIRED = SimpleOption.<Boolean>builder()
98-
.node("tier-tagger", "show-retired").type(TypeToken.get(Boolean.class))
99-
.defaultValue(false)
97+
public static final SimpleOption<Boolean> SHOW_REGION = SimpleOption.<Boolean>builder()
98+
.node("tier-tagger", "show-region").type(TypeToken.get(Boolean.class))
99+
.defaultValue(true)
100100
.notifyClient()
101101
.build();
102102

@@ -105,9 +105,9 @@ public final class ModTierTagger {
105105
*
106106
* @since 1.1.9
107107
*/
108-
public static final SimpleOption<Boolean> SHOW_REGION = SimpleOption.<Boolean>builder()
109-
.node("tier-tagger", "show-region").type(TypeToken.get(Boolean.class))
110-
.defaultValue(true)
108+
public static final SimpleOption<Boolean> SHOW_RETIRED = SimpleOption.<Boolean>builder()
109+
.node("tier-tagger", "show-retired").type(TypeToken.get(Boolean.class))
110+
.defaultValue(false)
111111
.notifyClient()
112112
.build();
113113

docs/developers/mods/overlaymod.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public void toggleOverlayExample(Player viewer, boolean value) {
1919
- Config Key: `enabled`
2020
- Values
2121
- Type: `Boolean`
22-
- Default: `true`
22+
- Default: `false`
2323

2424
- __`MINIMAL_VIEW_BOBBING`__
2525
- When View Bobbing is enabled, only bob your hand (requires View Bobbing to be enabled).

docs/developers/mods/skyblock.mdx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,14 +244,20 @@ public void toggleHypixelSkyblockExample(Player viewer, boolean value) {
244244
- Type: `Boolean`
245245
- Default: `false`
246246

247+
- __`SKY_BLOCK_FINISHED_COMMISSIONS`__
248+
- Config Key: `sky-block-finished-commissions`
249+
- Values
250+
- Type: `Boolean`
251+
- Default: `false`
252+
247253
- __`SKY_BLOCK_METAL_DETECTOR`__
248254
- Config Key: `sky-block-metal-detector`
249255
- Values
250256
- Type: `Boolean`
251257
- Default: `false`
252258

253-
- __`SKY_BLOCK_FINISHED_COMMISSIONS`__
254-
- Config Key: `sky-block-finished-commissions`
259+
- __`SKY_BLOCK_METAL_DETECTOR_LINE`__
260+
- Config Key: `sky-block-metal-detector-line`
255261
- Values
256262
- Type: `Boolean`
257263
- Default: `false`

docs/developers/mods/tiertagger.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,18 @@ public void toggleTierTaggerExample(Player viewer, boolean value) {
4545
- Type: `Boolean`
4646
- Default: `true`
4747

48-
- __`SHOW_RETIRED`__
49-
- Config Key: `show-retired`
50-
- Values
51-
- Type: `Boolean`
52-
- Default: `false`
53-
5448
- __`SHOW_REGION`__
5549
- Config Key: `show-region`
5650
- Values
5751
- Type: `Boolean`
5852
- Default: `true`
5953

54+
- __`SHOW_RETIRED`__
55+
- Config Key: `show-retired`
56+
- Values
57+
- Type: `Boolean`
58+
- Default: `false`
59+
6060
- __`COLOR_HT1`__
6161
- Config Key: `color-h-t1`
6262
- Values

0 commit comments

Comments
 (0)