Skip to content

Commit

Permalink
Sync LunarClient Mods & Options
Browse files Browse the repository at this point in the history
  • Loading branch information
LunarClientBot committed Nov 14, 2024
1 parent d155e01 commit ef41155
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,18 @@ public final class ModSkyblock {
.notifyClient()
.build();

/**
* Provides a general line thickness option that applies to most features with box/line rendering.
*
* @since %release_version%
*/
public static final NumberOption<Float> SKYBLOCK_LINE_THICKNESS = NumberOption.<Float>number()
.comment("Provides a general line thickness option that applies to most features with box/line rendering.")
.node("skyblock", "skyblock-line-thickness").type(TypeToken.get(Float.class))
.min(1.0F).max(10.0F)
.notifyClient()
.build();

private ModSkyblock() {
}

Expand Down
9 changes: 9 additions & 0 deletions docs/developers/mods/skyblock.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -186,3 +186,12 @@ public void toggleHypixelSkyblockExample(Player viewer, boolean value) {
- Type: `Boolean`
- Default: `false`

- __`SKYBLOCK_LINE_THICKNESS`__
- Provides a general line thickness option that applies to most features with box/line rendering.
- Config Key: `skyblock-line-thickness`
- Values
- Type: `Float`
- Default: `4.0F`
- Minimum: `1.0F`
- Maximum: `10.0F`

1 comment on commit ef41155

@LunarClientBot
Copy link
Collaborator Author

@LunarClientBot LunarClientBot commented on ef41155 Nov 14, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📄 Documentation Deployment

Status:✅ Completed
Environment:preview
URL:https://ea17fff7.lunarclient-dev.pages.dev

Please sign in to comment.