spelling error

This commit is contained in:
Bella 2020-04-16 14:09:26 -04:00
parent 0e19db1d91
commit 3eab0a838d
No known key found for this signature in database
GPG Key ID: DBD4A6030080C8B3
1 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ public class RunConfig extends Module {
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));
private Setting<Boolean> hasRunTooltips = register(Settings.b("Tooltips", false));
public void onEnable() {
MODULE_MANAGER.getModule(ActiveModules.class).enable();
@ -50,9 +50,9 @@ public class RunConfig extends Module {
MODULE_MANAGER.getModule(CustomChat.class).enable();
hasRunCustomChat.setValue(true);
}
if (!hasrunTooltips.getValue()) {
if (!hasRunTooltips.getValue()) {
MODULE_MANAGER.getModule(Tooltips.class).enable();
hasrunTooltips.setValue(true);
hasRunTooltips.setValue(true);
}
disable();