no data should validate any seed
This commit is contained in:
@@ -29,7 +29,7 @@ public class DungeonData extends PopulationData {
|
||||
|
||||
@Override
|
||||
public boolean testDecorator(long decoratorSeed) {
|
||||
if(this.starts.isEmpty())return false;
|
||||
if(this.starts.isEmpty())return true;
|
||||
|
||||
//TODO: This currently only supports 1 dungeon per chunk.
|
||||
BlockPos start = this.starts.get(0);
|
||||
|
||||
@@ -31,7 +31,7 @@ public class EmeraldOreData extends PopulationData {
|
||||
|
||||
@Override
|
||||
public boolean testDecorator(long decoratorSeed) {
|
||||
if(this.starts.isEmpty())return false;
|
||||
if(this.starts.isEmpty())return true;
|
||||
|
||||
//TODO: This currently only supports 1 emerald per chunk.
|
||||
BlockPos start = this.starts.get(0);
|
||||
|
||||
Reference in New Issue
Block a user