
Crash on group create
Moyettes opened this issue ยท 1 comments
Bug description
The mod crashes when creating a group in voice chat
Steps to reproduce the issue
- Join SinglePlayer or Multiplayer world
- Press G to create group and enter name and click create
- 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();
}
}