33import cc .polyfrost .oneconfig .events .EventManager ;
44import cc .polyfrost .oneconfig .libs .universal .ChatColor ;
55import cc .polyfrost .oneconfig .libs .universal .UChat ;
6+ import cc .woverflow .hysentials .cosmetic .CosmeticManager ;
67import cc .woverflow .hysentials .gui .UpdateChecker ;
78import cc .woverflow .hysentials .guis .club .ClubDashboardHandler ;
9+ import cc .woverflow .hysentials .guis .container .ContainerHandler ;
810import cc .woverflow .hysentials .handlers .chat .modules .misc .Limit256 ;
911import cc .woverflow .hysentials .util .MUtils ;
1012import cc .polyfrost .oneconfig .utils .commands .CommandManager ;
3436import cc .woverflow .hysentials .handlers .sbb .SbbRenderer ;
3537import cc .woverflow .hysentials .htsl .Cluster ;
3638import cc .woverflow .hysentials .pets .cubit .CubitCompanion ;
37- import cc .woverflow .hysentials .pets .hamster .HamsterCompanion ;
3839import cc .woverflow .hysentials .util .*;
3940import cc .woverflow .hysentials .util .blockw .OnlineCache ;
4041import cc .woverflow .hysentials .websocket .Socket ;
4142import cc .woverflow .hytils .util .friends .FriendCache ;
4243import net .minecraft .client .Minecraft ;
4344import net .minecraft .client .gui .FontRenderer ;
45+ import net .minecraft .client .settings .KeyBinding ;
4446import net .minecraft .util .ResourceLocation ;
4547import net .minecraftforge .client .ClientCommandHandler ;
4648import net .minecraftforge .common .MinecraftForge ;
@@ -91,6 +93,7 @@ public class Hysentials {
9193 private final ChatHandler chatHandler = new ChatHandler ();
9294
9395 public final GuiDisplayHandler guiDisplayHandler = new GuiDisplayHandler ();
96+ public final CosmeticManager cosmeticManager = new CosmeticManager ();
9497
9598 public ImageIconRenderer imageIconRenderer ;
9699 public JsonData sbBoxes ;
@@ -104,7 +107,6 @@ public class Hysentials {
104107
105108 public String rank ;
106109
107- public HamsterCompanion hamsterCompanion ;
108110 public CubitCompanion cubitCompanion ;
109111
110112
@@ -212,6 +214,12 @@ private void registerImages() {
212214 new ImageIcon ("team" , new ResourceLocation ("textures/icons/team.png" ));
213215 new ImageIcon ("friend" , new ResourceLocation ("textures/icons/friend.png" ));
214216
217+ new ImageIcon ("common" , new ResourceLocation ("textures/icons/common.png" ));
218+ new ImageIcon ("rare" , new ResourceLocation ("textures/icons/rare.png" ));
219+ new ImageIcon ("epic" , new ResourceLocation ("textures/icons/epic.png" ));
220+ new ImageIcon ("legendary" , new ResourceLocation ("textures/icons/legendary.png" ));
221+ new ImageIcon ("exclusive" , new ResourceLocation ("textures/icons/exclusive.png" ));
222+
215223 for (HypixelRanks rank : HypixelRanks .values ()) {
216224 try {
217225 new ImageIcon (rank .getIconName (), new ResourceLocation ("textures/icons/" + rank .getIconName () + ".png" ));
@@ -264,6 +272,8 @@ private void registerHandlers() {
264272 eventBus .register (new MUtils ());
265273 eventBus .register (new Limit256 ());
266274 eventBus .register (cubitCompanion = new CubitCompanion ());
275+ eventBus .register (new ContainerHandler ());
276+
267277 new Renderer ();
268278
269279 // height overlay
0 commit comments