66import codes .biscuit .skyblockaddons .features .backpacks .Backpack ;
77import codes .biscuit .skyblockaddons .features .backpacks .BackpackColor ;
88import codes .biscuit .skyblockaddons .features .craftingpatterns .CraftingPattern ;
9- import codes .biscuit .skyblockaddons .tweaker .SkyblockAddonsSetup ;
9+ import codes .biscuit .skyblockaddons .tweaker .SkyblockAddonsTransformer ;
1010import codes .biscuit .skyblockaddons .utils .EnumUtils ;
1111import codes .biscuit .skyblockaddons .utils .ColorCode ;
1212import codes .biscuit .skyblockaddons .utils .objects .FloatPairString ;
@@ -294,7 +294,7 @@ public static void drawSlot(GuiContainer guiContainer, Slot slot) {
294294 private static Method drawGradientRect = null ;
295295
296296 private static void drawRightGradientRect (GuiContainer guiContainer , int left , int top , int right , int bottom , int startColor , int endColor ) {
297- if (SkyblockAddonsSetup . isUsingLabyModClient ()) { // There are no access transformers in labymod.
297+ if (SkyblockAddonsTransformer . isLabymodClient ()) { // There are no access transformers in labymod.
298298 try {
299299 if (drawGradientRect == null ) {
300300 drawGradientRect = guiContainer .getClass ().getSuperclass ().getSuperclass ().getDeclaredMethod ("a" , int .class , int .class , int .class , int .class , int .class , int .class );
@@ -364,7 +364,7 @@ public static void handleMouseClick(Slot slotIn, int slotId, int clickedButton,
364364 private static Field zLevel = null ;
365365
366366 private static void setZLevel (Gui gui , int zLevelToSet ) {
367- if (SkyblockAddonsSetup . isUsingLabyModClient ()) { // There are no access transformers in labymod.
367+ if (SkyblockAddonsTransformer . isLabymodClient ()) { // There are no access transformers in labymod.
368368 try {
369369 if (zLevel == null ) {
370370 zLevel = gui .getClass ().getDeclaredField ("e" );
@@ -384,7 +384,7 @@ private static void setZLevel(Gui gui, int zLevelToSet) {
384384 private static Method drawHoveringText = null ;
385385
386386 private static void drawHoveringText (GuiContainer guiContainer , List <String > text , int x , int y ) {
387- if (SkyblockAddonsSetup . isUsingLabyModClient ()) { // There are no access transformers in labymod.
387+ if (SkyblockAddonsTransformer . isLabymodClient ()) { // There are no access transformers in labymod.
388388 try {
389389 if (drawHoveringText == null ) {
390390 drawHoveringText = guiContainer .getClass ().getSuperclass ().getDeclaredMethod ("a" ,
0 commit comments