Closed Bryan1029384756 closed 1 year ago
Bug description The mod crashes when creating a group in voice chat
Steps to reproduce the issue
Expected behavior Not crash on group create
Log files https://gist.github.com/Bryan1029384756/e830058bc90e88dc91bd4c176d7db23a
Versions
Other mods N/A
They changed the code in 1.20.1 instead of GroupChatManagerMixin being
@Inject(method = "renderIcons", at = @At(value = "HEAD"), cancellable = true) private static void renderIcons(PoseStack matrixStack, CallbackInfo ci) { if (ReplayInterface.INSTANCE.isInReplayEditor) { ci.cancel(); } }
it should be
@Inject(method = "renderIcons", at = @At(value = "HEAD"), cancellable = true) private static void renderIcons(GuiGraphics guiGraphics, CallbackInfo ci) { if (ReplayInterface.INSTANCE.isInReplayEditor) { ci.cancel(); } }
Thank you for reporting this and also for proposing a solution!
Bug description The mod crashes when creating a group in voice chat
Steps to reproduce the issue
Expected behavior Not crash on group create
Log files https://gist.github.com/Bryan1029384756/e830058bc90e88dc91bd4c176d7db23a
Versions
Other mods N/A
They changed the code in 1.20.1 instead of GroupChatManagerMixin being
it should be