Merge pull request #832 from CocoTheOwner/noWarn

Remove warning on create
This commit is contained in:
Brian Fopiano
2022-07-29 10:04:22 -07:00
committed by GitHub
5 changed files with 7 additions and 3 deletions

View File

@@ -463,7 +463,9 @@ public enum NoiseStyle {
}
public CNG create(RNG seed) {
return f.create(seed).bake();
CNG cng = f.create(seed).bake();
cng.setLeakStyle(this);
return cng;
}
public IrisGeneratorStyle style() {