use of net.minecraft.world.gen.feature.WorldGenFire in project SpongeCommon by SpongePowered.
the class NetherFireBuilder method build.
@Override
public NetherFire build() throws IllegalStateException {
NetherFire pop = (NetherFire) new WorldGenFire();
pop.setFirePerCluster(this.cluster);
pop.setClustersPerChunk(this.count);
return pop;
}
Aggregations