Removed already decorating exception

This commit is contained in:
Kino 2019-01-31 20:46:52 -05:00
parent 97ddadd664
commit 3b8d91ad6e

View file

@ -59,7 +59,7 @@ public class AetherBiomeDecorator extends BiomeDecorator {
@Override
public void decorateChunk(World worldIn, Random random, BiomeGenBase biome, int x, int z) {
if (this.world != null) {
throw new RuntimeException("Already decorating");
System.out.println("Already decorating");
} else {
this.world = worldIn;
this.rand = random;