Default worms

This commit is contained in:
cyberpwn 2021-09-04 13:54:09 -04:00
parent b5d7e2969f
commit d06445e04b
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ import lombok.experimental.Accessors;
@Data
public class IrisCave extends IrisRegistrant {
@Desc("Define the shape of this cave")
private IrisWorm worm;
private IrisWorm worm = new IrisWorm();
@Desc("Define potential forking features")
private IrisCarving fork = new IrisCarving();

View File

@ -46,7 +46,7 @@ import lombok.experimental.Accessors;
@Data
public class IrisRavine extends IrisRegistrant {
@Desc("Define the shape of this ravine (2d, ignores Y)")
private IrisWorm worm;
private IrisWorm worm = new IrisWorm();
@RegistryListResource(IrisBiome.class)
@Desc("Force this cave to only generate the specified custom biome")