Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Commit

Permalink
fix: canPlayerClose for BackendSimpleGui
Browse files Browse the repository at this point in the history
  • Loading branch information
andantet committed Oct 28, 2024
1 parent eaabfc1 commit 0fb3122
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
public abstract class BackendSimpleGuiMixin implements SlotGuiInterface, ParentedGui, BasedGui {
@Shadow @Final public LayeredGui gui;

@Override
public boolean canPlayerClose() {
return this.gui.canPlayerClose();
}

@Unique
@Override
public @Nullable GuiInterface getParent() {
Expand Down

0 comments on commit 0fb3122

Please sign in to comment.