Skip to content

Commit ef41155

Browse files
Sync LunarClient Mods & Options
1 parent d155e01 commit ef41155

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,18 @@ public final class ModSkyblock {
308308
.notifyClient()
309309
.build();
310310

311+
/**
312+
* Provides a general line thickness option that applies to most features with box/line rendering.
313+
*
314+
* @since %release_version%
315+
*/
316+
public static final NumberOption<Float> SKYBLOCK_LINE_THICKNESS = NumberOption.<Float>number()
317+
.comment("Provides a general line thickness option that applies to most features with box/line rendering.")
318+
.node("skyblock", "skyblock-line-thickness").type(TypeToken.get(Float.class))
319+
.min(1.0F).max(10.0F)
320+
.notifyClient()
321+
.build();
322+
311323
private ModSkyblock() {
312324
}
313325

docs/developers/mods/skyblock.mdx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,3 +186,12 @@ public void toggleHypixelSkyblockExample(Player viewer, boolean value) {
186186
- Type: `Boolean`
187187
- Default: `false`
188188

189+
- __`SKYBLOCK_LINE_THICKNESS`__
190+
- Provides a general line thickness option that applies to most features with box/line rendering.
191+
- Config Key: `skyblock-line-thickness`
192+
- Values
193+
- Type: `Float`
194+
- Default: `4.0F`
195+
- Minimum: `1.0F`
196+
- Maximum: `10.0F`
197+

0 commit comments

Comments
 (0)