mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-22 17:27:38 +00:00
Skip checking for custom biomes on 1.15.2
This commit is contained in:
parent
1a0f7df3f4
commit
869a8058cc
@ -321,7 +321,7 @@ public class WorldEditPlugin extends JavaPlugin {
|
||||
LOGGER.warn("Failed to load biomes via adapter (not present). Will load via bukkit");
|
||||
for (Biome biome : Biome.values()) {
|
||||
// Custom is bad
|
||||
if (biome == Biome.CUSTOM) {
|
||||
if (biome.name().equals("CUSTOM")) {
|
||||
continue;
|
||||
}
|
||||
String lowerCaseBiome = biome.getKey().toString().toLowerCase(Locale.ROOT);
|
||||
|
Loading…
Reference in New Issue
Block a user