[Fixes] Crash in Deciders when pickers are null

This commit is contained in:
Frank 2022-12-09 16:33:42 +01:00
parent 020e20e483
commit d02a74a263

View file

@ -158,6 +158,8 @@ public abstract class BiomeDecider {
* Called whenever the picker needs to rebuild it's contents
*/
public void rebuild() {
//TODO: 1.19.3 test if this rebuilds once we have biomes
if (picker != null)
picker.rebuild();
}