Update to newest dev version - fixes #92

This commit is contained in:
SIMULATAN
2022-01-06 16:41:43 +01:00
committed by Cloudburst
parent b1fa434a9c
commit 502b2c2738
11 changed files with 89 additions and 57 deletions

View File

@@ -10,10 +10,11 @@ import anticope.rejects.utils.RejectsUtils;
import meteordevelopment.meteorclient.addons.MeteorAddon;
import meteordevelopment.meteorclient.MeteorClient;
import meteordevelopment.meteorclient.gui.GuiThemes;
import meteordevelopment.meteorclient.systems.Systems;
import meteordevelopment.meteorclient.systems.commands.Commands;
import meteordevelopment.meteorclient.systems.hud.HUD;
import meteordevelopment.meteorclient.systems.modules.Category;
import meteordevelopment.meteorclient.systems.modules.Modules;
import meteordevelopment.meteorclient.systems.modules.render.hud.HUD;
import net.minecraft.item.Items;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
@@ -87,7 +88,7 @@ public class MeteorRejectsAddon extends MeteorAddon {
commands.add(new TerrainExport());
// HUD
HUD hud = modules.get(HUD.class);
HUD hud = Systems.get(HUD.class);
hud.elements.add(new AppleHud(hud));
hud.elements.add(new BaritoneHud(hud));
hud.elements.add(new CrystalHud(hud));