-
-
Notifications
You must be signed in to change notification settings - Fork 907
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
I added option to disable command suggestions in chat :,) #1347
I added option to disable command suggestions in chat :,) #1347
Conversation
src/main/java/meteordevelopment/meteorclient/mixin/CommandSuggestorMixin.java
Show resolved
Hide resolved
@@ -113,6 +113,13 @@ | |||
.build() | |||
); | |||
|
|||
private final Setting<Boolean> onRenderSuggestion = sgOverlay.add(new BoolSetting.Builder() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
onRenderSuggestion
makes no sense for a name.
noCommandSuggestions
would be better.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay now it should be done
@@ -336,6 +343,10 @@ public boolean noEatParticles() { | |||
return isActive() && noEatParticles.get(); | |||
} | |||
|
|||
public boolean onRenderSuggestion() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
noCommandSuggestions
Taken from an unmerged pr MeteorDevelopment/meteor-client#1347
No description provided.