-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
I added option to disable command suggestions in chat :,) #1347
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 6 commits
fd69181
aaa0f8f
1182955
bd64bb8
a5ca7b9
f920ad9
ddf189e
8b0c0ff
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -113,6 +113,13 @@ public class NoRender extends Module { | |
| .build() | ||
| ); | ||
|
|
||
| private final Setting<Boolean> onRenderSuggestion = sgOverlay.add(new BoolSetting.Builder() | ||
|
||
| .name("command-suggestions") | ||
| .description("Disables command suggestions in chat.") | ||
| .defaultValue(false) | ||
| .build() | ||
| ); | ||
|
|
||
| // HUD | ||
|
|
||
| private final Setting<Boolean> noBossBar = sgHUD.add(new BoolSetting.Builder() | ||
|
|
@@ -336,6 +343,10 @@ public boolean noEatParticles() { | |
| return isActive() && noEatParticles.get(); | ||
| } | ||
|
|
||
| public boolean onRenderSuggestion() { | ||
|
||
| return isActive() && onRenderSuggestion.get(); | ||
| } | ||
|
|
||
| // HUD | ||
|
|
||
| public boolean noBossBar() { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.