Removed unnecessary Result.ALLOW for all generators

This should no longer be needed
This commit is contained in:
Adubbz 2017-01-03 23:37:35 +11:00 committed by GitHub
parent 6c6a71aae5
commit c8ab581422
1 changed files with 1 additions and 12 deletions

View File

@ -43,9 +43,7 @@ public class DecorateBiomeEventHandler
if (event.getType() != Decorate.EventType.CUSTOM) if (event.getType() != Decorate.EventType.CUSTOM)
{ {
boolean allow = runGeneratorStage(event.getWorld(), event.getRand(), event.getPos(), GeneratorStage.mapDecorateType(event.getType())); runGeneratorStage(event.getWorld(), event.getRand(), event.getPos(), GeneratorStage.mapDecorateType(event.getType()));
event.setResult(allow ? Result.ALLOW : Result.DENY);
} }
} }
@ -89,15 +87,6 @@ public class DecorateBiomeEventHandler
{ {
generator.scatter(world, random, pos); generator.scatter(world, random, pos);
} }
//Biomes should explicitly allow for the following by defining their own generators
/*if (extendedBiome.getBiomeOwner() == BiomeOwner.BIOMESOPLENTY)
{
if (stage == GeneratorStage.PUMPKIN)
{
return false;
}
}*/
} }
return true; return true;