make it not lock up hopefully?
All checks were successful
/ Build BaseBand DSM & Broadway (push) Successful in 1m28s
/ Build BaseBand Loader (push) Successful in 1m25s

This commit is contained in:
Daniella / Tove 2024-06-11 22:59:05 +02:00
parent 5b6250c8bc
commit 8e1f96f5c4
Signed by: TudbuT
GPG key ID: B3CF345217F202D3

View file

@ -9,7 +9,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
@Mixin(Minecraft.class) @Mixin(Minecraft.class)
public class MixinMinecraft { public class MixinMinecraft {
@Inject(method = "init", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/Minecraft;checkGLError(Ljava/lang/String;)V", ordinal = 1, shift = At.Shift.AFTER)) @Inject(method = "init", at = @At("RETURN"))
private void onInit(CallbackInfo ci) { private void onInit(CallbackInfo ci) {
MixinProxy.minecraftOnInit(); MixinProxy.minecraftOnInit();
} }