Remove TabFriends from first run

This commit is contained in:
Dominika 2020-05-12 16:31:07 -04:00 committed by GitHub
parent 011ccc8d09
commit 8d9619963a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 5 deletions

View File

@ -24,7 +24,6 @@ public class RunConfig extends Module {
private Setting<Boolean> hasRunCapes = register(Settings.b("Capes", false));
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> hasRunTooltips = register(Settings.b("Tooltips", false));
public void onEnable() {
@ -45,10 +44,6 @@ public class RunConfig extends Module {
MODULE_MANAGER.getModule(FixGui.class).enable();
hasRunFixGui.setValue(true);
}
if (!hasRunTabFriends.getValue()) {
MODULE_MANAGER.getModule(TabFriends.class).enable();
hasRunTabFriends.setValue(true);
}
if (!hasRunTooltips.getValue()) {
MODULE_MANAGER.getModule(Tooltips.class).enable();
hasRunTooltips.setValue(true);