0
0
mirror of https://github.com/Wurst-Imperium/Wurst7.git synced 2024-09-19 17:02:13 +02:00

Add cmds to WurstClient

This commit is contained in:
Alexander 2019-07-04 12:08:46 +02:00
parent 489ac8fdb9
commit 600d152906

View File

@ -13,7 +13,6 @@ import java.nio.file.Path;
import net.minecraft.client.MinecraftClient;
import net.wurstclient.analytics.WurstAnalytics;
import net.wurstclient.command.CmdList;
import net.wurstclient.event.EventManager;
import net.wurstclient.hack.HackList;
@ -24,7 +23,6 @@ public final class WurstClient
private final WurstAnalytics analytics;
private final EventManager eventManager;
private final HackList hax;
private final CmdList cmds;
private boolean enabled = true;
@ -43,8 +41,6 @@ public final class WurstClient
Path settingsFile = wurstFolder.resolve("settings.json");
hax = new HackList(enabledHacksFile, settingsFile);
cmds = new CmdList();
analytics.trackPageView("/mc1.14.2/v" + VERSION,
"Wurst " + VERSION + " MC1.14.2");
}
@ -83,11 +79,6 @@ public final class WurstClient
return hax;
}
public CmdList getCmds()
{
return cmds;
}
public boolean isEnabled()
{
return enabled;