20w30a - Just a mapping update

This commit is contained in:
modmuss50 2020-07-22 17:38:57 +01:00
parent 359819bea1
commit d7f19da055
3 changed files with 4 additions and 4 deletions
build.gradle
fabric-biomes-v1
build.gradle
src/main/java/net/fabricmc/fabric/mixin/biome

View file

@ -18,8 +18,8 @@ plugins {
def ENV = System.getenv()
class Globals {
static def baseVersion = "0.15.1"
static def mcVersion = "20w29a"
static def baseVersion = "0.15.2"
static def mcVersion = "20w30a"
static def yarnVersion = "+build.1"
}

View file

@ -1,2 +1,2 @@
archivesBaseName = "fabric-biomes-v1"
version = getSubprojectVersion(project, "1.0.1")
version = getSubprojectVersion(project, "1.0.2")

View file

@ -63,7 +63,7 @@ public class MixinAddHillsLayer {
Biome parent;
if (processedNoiseSample == 0 && biomeReturn != biomeId) {
parent = Biomes.method_30360(BuiltinRegistries.BIOME.get(biomeReturn));
parent = Biomes.getMutated(BuiltinRegistries.BIOME.get(biomeReturn));
biomeReturn = parent == null ? biomeId : BuiltinRegistries.BIOME.getRawId(parent);
}