Replay Voice Chat

Replay Voice Chat

105k Downloads

Crash on group create

Moyettes opened this issue ยท 1 comments

commented

Bug description
The mod crashes when creating a group in voice chat

Steps to reproduce the issue

  1. Join SinglePlayer or Multiplayer world
  2. Press G to create group and enter name and click create
  3. Crash

Expected behavior
Not crash on group create

Log files
https://gist.github.com/Bryan1029384756/e830058bc90e88dc91bd4c176d7db23a

Versions

  • 1.20.1
  • 0.14.21
  • voicechat-fabric-1.20.1-2.4.11
  • ReplayMod Version
  • replayvoicechat-1.20.1-1.3.1

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();
        }
    }
commented

Thank you for reporting this and also for proposing a solution!