Roguelike Dungeons -- Fnar's Edition

Roguelike Dungeons -- Fnar's Edition

13M Downloads

(1.12) Endless cascading world gen in Simple Void World

NostalgicLorikeet opened this issue ยท 2 comments

commented

When going to the void world from the Simple Void World mod while having this mod installed, it will attempt to endlessly try and fail to generate dungeons, causing so much cascading world gen lag that the world completely freezes and the game cannot be exited without crashing. Probably related to the fact that the void world is not a unique biome but just a completely empty plains.

commented

Btw, this could probably be fixed by adding a dimension check to generateInChunkIfPossible() in Dungeons.java.

commented

Something like this maybe, haven't figured out how to compile to check though :(

    if (editor.getDimension()!=0) {
      return;
    }

Alternatively, it could check for the dim ID of the void world, which is 43 by default but is usually accessed by me.modmuss50.svw.Config.dimID in SVW's source code

    if (editor.getDimension()==43) {
      return;
    }