mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 11:38:29 +01:00
Fixed block.getBiome returning null in new 1.1 biomes. This fixes BUKKIT-496
This commit is contained in:
parent
9da730c8e1
commit
d5438c30b9
@ -256,6 +256,16 @@ public class CraftBlock implements Block {
|
|||||||
return Biome.MUSHROOM_ISLAND;
|
return Biome.MUSHROOM_ISLAND;
|
||||||
} else if (base == BiomeBase.MUSHROOM_SHORE) {
|
} else if (base == BiomeBase.MUSHROOM_SHORE) {
|
||||||
return Biome.MUSHROOM_SHORE;
|
return Biome.MUSHROOM_SHORE;
|
||||||
|
} else if (base == BiomeBase.BEACH) {
|
||||||
|
return Biome.BEACH;
|
||||||
|
} else if (base == BiomeBase.DESERT_HILLS) {
|
||||||
|
return Biome.DESERT_HILLS;
|
||||||
|
} else if (base == BiomeBase.FOREST_HILLS) {
|
||||||
|
return Biome.FOREST_HILLS;
|
||||||
|
} else if (base == BiomeBase.TAIGA_HILLS) {
|
||||||
|
return Biome.TAIGA_HILLS;
|
||||||
|
} else if (base == BiomeBase.SMALL_MOUNTAINS) {
|
||||||
|
return Biome.SMALL_MOUNTAINS;
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
|
Loading…
Reference in New Issue
Block a user