Skip to content

Commit 70c8171

Browse files
Fixed rendering error of Social Interaction Menu in 1.16.4 (#28)
1 parent 927bd29 commit 70c8171

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/me/juancarloscp52/bedrockify/client/mixin/EntryListWidgetMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public abstract class EntryListWidgetMixin {
2525

2626
@Redirect(method = "render", at=@At(value = "INVOKE", target = "Lnet/minecraft/client/gui/widget/EntryListWidget;renderBackground(Lnet/minecraft/client/util/math/MatrixStack;)V"))
2727
private void renderPanorama(EntryListWidget entryListWidget,MatrixStack matrices){
28-
if(!Bedrockify.getInstance().settings.isCubemapBackgroundEnabled() || ((TranslatableText)this.client.currentScreen.getTitle()).getKey().equals("modmenu.title")){
28+
if(!Bedrockify.getInstance().settings.isCubemapBackgroundEnabled() || ((TranslatableText)this.client.currentScreen.getTitle()).getKey().equals("modmenu.title") || ((TranslatableText)this.client.currentScreen.getTitle()).getKey().equals("gui.socialInteractions.title")){
2929
this.renderBackground(matrices);
3030
return;
3131
}

0 commit comments

Comments
 (0)