Fix addTypes not adding in the base types. (#3681)
This commit is contained in:
parent
3e568b864e
commit
3379ee7df2
1 changed files with 3 additions and 1 deletions
|
@ -179,7 +179,9 @@ public class BiomeDictionary
|
|||
type.biomes.add(biome);
|
||||
}
|
||||
|
||||
getBiomeInfo(biome).types.addAll(supertypes);
|
||||
BiomeInfo biomeInfo = getBiomeInfo(biome);
|
||||
Collections.addAll(biomeInfo.types, types);
|
||||
biomeInfo.types.addAll(supertypes);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue