Merge pull request #1078 from VolmitDev/fix_v1_19_R3

Remove Cherry Grove from 1.19.4 biomes list
This commit is contained in:
Brian Fopiano
2024-03-17 02:55:03 -04:00
committed by GitHub

View File

@@ -278,7 +278,7 @@ public class NMSBinding implements INMSBinding {
@Override
public KList<Biome> getBiomes() {
return new KList<>(Biome.values()).qadd(Biome.CHERRY_GROVE).qdel(Biome.CUSTOM);
return new KList<>(Biome.values()).qdel(Biome.CHERRY_GROVE).qdel(Biome.CUSTOM);
}
@Override