Solved how rename LiquidBounce without launch errors?
-
when I change (CLIENT_NAME = "LiquidBounce") to (CLIENT_NAME = "idk"), Liquidbounce refuses start
-
Okay, I solved that problem. I added it in the commentary -
wxdbie
-
@wxdbie ? what
-
@ali-ccfakex-0 i already figured it out
-
@wxdbie i mean how did you solve it? cuz the same bug happens to me
-
@ali-ccfakex-0 ah, press Ctrl+Shift+N and type MixinMinecraft.java, then find setWindowIcon, and delete it:
@Inject(method = "setWindowIcon", at = @At("HEAD"), cancellable = true) private void setWindowIcon(CallbackInfo callbackInfo) { if(Util.getOSType() != Util.EnumOS.OSX) { final ByteBuffer[] liquidBounceFavicon = IconUtils.getFavicon(); if(liquidBounceFavicon != null) { Display.setIcon(liquidBounceFavicon); callbackInfo.cancel(); } } }
-
@wxdbie ty