Roots Classic

Roots Classic

15M Downloads

Game Crashes when opening runic tablet

ThirteenPilots opened this issue ยท 1 comments

commented

Minecraft version & Mod Version: Forge 1.20.1

Single player or Server: Single Player

Describe problem (what you were doing / what happened): Running a modded game with 100+ mods. Crashes when I open a runic tablet but otherwise fine. Already tried disabling Embeddium and betterfpsdist but they were not the cause of the problem.

crash-2024-11-16_09.23.35-client.txt

commented

looks like the mod will crash if there are 0 researches in the Runic Tablet, but that should never happen because the tablet is populated in RecipesUpdatedEvent, which shooooould always fire shortly after the time you get ingame.

public static List<ResearchGroup> globalResearches = new ArrayList<>();
public static void onRecipesUpdated(RecipesUpdatedEvent event) {
reload(event.getRecipeManager());
}

Do you have a complete log? wondering if some other mod is breaking that event, or maybe the event is taking a long time to fire for whatever reason, or maybe if roots is even throwing an exception before it finishes building the research table