[Fixes] Crash in Deciders when pickers are null
This commit is contained in:
parent
020e20e483
commit
d02a74a263
1 changed files with 3 additions and 1 deletions
|
@ -158,7 +158,9 @@ public abstract class BiomeDecider {
|
||||||
* Called whenever the picker needs to rebuild it's contents
|
* Called whenever the picker needs to rebuild it's contents
|
||||||
*/
|
*/
|
||||||
public void rebuild() {
|
public void rebuild() {
|
||||||
picker.rebuild();
|
//TODO: 1.19.3 test if this rebuilds once we have biomes
|
||||||
|
if (picker != null)
|
||||||
|
picker.rebuild();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue