Colin Noga
Colin Noga
When generating a procgen overworld, if an island is only accessible by SHIP and has the FLOATER turn-in and any other critical key item on it, the player can softlock...
From the function "AbstractDungeon.generateRoomTypes", with custom mods "Shiny" and "customChronoMod" selected... `ChronoCustoms.logger.info(String.join(",", CardCrawlGame.trial.dailyModIDs()));` outputs "Shiny" `ChronoCustoms.logger.info(String.join(",", AbstractPlayer.customMods));` outputs "Shiny" `for (AbstractDailyMod mod : ModHelper.enabledMods) { ChronoCustoms.logger.info(mod.modID); }` outputs "Shiny" but.......
The SGF parser is slllloooow. Specifically... ### SGF::Parser#next_character: [email protected]? && @stream.sysread(1) is really slow. The stream methods are poor choices because they don’t get cached at all. You’d find exponential...