Skip to content

Commit e364516

Browse files
committed
add callouts
1 parent d9e3e04 commit e364516

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

api/src/main/java/com/lunarclient/apollo/module/combat/CombatModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public final class CombatModule extends ApolloModule {
4343
* @since 1.0.4
4444
*/
4545
public static final SimpleOption<Boolean> DISABLE_MISS_PENALTY = Option.<Boolean>builder()
46-
.comment("Set to 'true' to disable the hit delay on versions above 1.8, otherwise 'false'.")
46+
.comment("Set to 'true' to remove the miss penalty on all versions 1.8 and above, otherwise 'false'.")
4747
.node("disable-miss-penalty").type(TypeToken.get(Boolean.class))
4848
.defaultValue(false).notifyClient().build();
4949

docs/developers/modules/border.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { Tab, Tabs } from 'nextra-theme-docs'
2+
import { Callout } from 'nextra-theme-docs'
23

34
# Border Module
45

@@ -12,6 +13,10 @@ The border module not only enhances Minecraft's current world border system, but
1213
- Custom border colors can be provided.
1314
- Ability to generate and display multiple world borders at once.
1415

16+
<Callout type="info">
17+
This module is only supported for 1.7 to 1.12 versions of Lunar Client.
18+
</Callout>
19+
1520
## Integration
1621

1722
### Sample Code

docs/developers/modules/combat.mdx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
1-
import { Callout } from 'nextra-theme-docs'
2-
31
# Combat Module
42

53
## Overview
64

75
The combat module allows you to modify certain aspects of combat that are usually handled client-sided.
86

9-
* Adds the ability to disable the 1.8 miss penalty, commonly known as 'hit-delay'.
10-
11-
<Callout type="info">
12-
This is a bare bones module to add support for the legacy-API feature 'LEGACY_COMBAT'.
13-
</Callout>
7+
- Adds the ability to disable the miss penalty, on all versions 1.8 and above.
148

159
## Available options
1610

docs/developers/modules/glow.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { Tab, Tabs } from 'nextra-theme-docs'
2+
import { Callout } from 'nextra-theme-docs'
23

34
# Glow Module
45

@@ -10,6 +11,10 @@ The glow module allows you to take advantage of the vanilla Minecraft Glow Effec
1011
- Adds improvements to glow effect for Lunar Client users.
1112
- Customizable colors for the glow effect, different from the vanilla Minecraft colors.
1213

14+
<Callout type="Warning">
15+
In Version 1.12, Optifine's 'Fast Render' setting alters player rendering. This is expected behavior for Optifine.
16+
</Callout>
17+
1318
![Glow Module Example](https://i.imgur.com/Ra3r363.png#center)
1419

1520
<div style={{ textAlign: "center" }}>

0 commit comments

Comments
 (0)