Skip to content

Commit

Permalink
Fix JEI compatibility with RPG layout
Browse files Browse the repository at this point in the history
(cherry picked from commit c0226da)
  • Loading branch information
Pyrofab committed Jun 15, 2024
1 parent 0c6aa76 commit 0fc68bd
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import net.minecraft.util.Identifier;
import org.ladysnake.blabber.Blabber;
import org.ladysnake.blabber.api.client.BlabberDialogueScreen;
import org.ladysnake.blabber.impl.client.BlabberRpgDialogueScreen;

@JeiPlugin
public class BlabberJeiClientPlugin implements IModPlugin {
Expand All @@ -34,5 +35,6 @@ public Identifier getPluginUid() {
@Override
public void registerGuiHandlers(IGuiHandlerRegistration registration) {
registration.addGuiScreenHandler(BlabberDialogueScreen.class, s -> null);
registration.addGuiScreenHandler(BlabberRpgDialogueScreen.class, s -> null);
}
}

0 comments on commit 0fc68bd

Please sign in to comment.