

Raises the chance to spawn larger dungeons.
GNU Affero General Public License v3.0
Raises the change to spawn larger dungeons. Valheim makes a limited number of attempts to spawn rooms for a dungeon.
The defaults for Forest Crypt are 20/40.
The defaults for Sunken Crypt are 20/30.
This mod alters these values for a higher chance of spawning more rooms per dungeon.
The Min/Max values do not functions as I expected them to. The algorithm the Dungeon Generator uses looks like the following.
for (int i = 0; i < maxRooms; i++)
{
TryToPlaceOneRoom();
if (HasAllRequiredRooms() && placedRooms.Count > minRooms)
{
break;
}
}
Dungeon Generator will stop spawning more rooms when either of the two statement are true.
Each dungeon type can have their own values. Enable the override for the dungeon and set it's values. If an override is not enable, then the values from the General section are used.