no data should validate any seed

This commit is contained in:
Unknown
2019-12-09 19:14:33 -05:00
parent 7a3ab77769
commit 83bf5ed63d
2 changed files with 2 additions and 2 deletions
@@ -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);