don't enable customchat by default

This commit is contained in:
Dominika 2020-04-25 17:21:54 -04:00 committed by GitHub
parent 454dc66303
commit b2b7fada47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 5 deletions

View File

@ -26,7 +26,6 @@ public class RunConfig extends Module {
private Setting<Boolean> hasRunDiscordSettings = register(Settings.b("DiscordRPC", false));
private Setting<Boolean> hasRunFixGui = register(Settings.b("FixGui", false));
private Setting<Boolean> hasRunTabFriends = register(Settings.b("TabFriends", false));
private Setting<Boolean> hasRunCustomChat = register(Settings.b("CustomChat", false));
private Setting<Boolean> hasRunTooltips = register(Settings.b("Tooltips", false));
public void onEnable() {
@ -51,10 +50,6 @@ public class RunConfig extends Module {
MODULE_MANAGER.getModule(TabFriends.class).enable();
hasRunTabFriends.setValue(true);
}
if (!hasRunCustomChat.getValue()) {
MODULE_MANAGER.getModule(CustomChat.class).enable();
hasRunCustomChat.setValue(true);
}
if (!hasRunTooltips.getValue()) {
MODULE_MANAGER.getModule(Tooltips.class).enable();
hasRunTooltips.setValue(true);