Example usage for net.minecraftforge.common BiomeDictionary areSimilar

List of usage examples for net.minecraftforge.common BiomeDictionary areSimilar

Introduction

In this page you can find the example usage for net.minecraftforge.common BiomeDictionary areSimilar.

Prototype

public static boolean areSimilar(Biome biomeA, Biome biomeB) 

Source Link

Document

Checks if the two given biomes have types in common.

Usage

From source file:org.blockartistry.DynSurround.registry.BiomeInfo.java

License:MIT License

public boolean areBiomesSameClass(@Nonnull final Biome biome) {
    return BiomeDictionary.areSimilar(this.biome, biome);
}