Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
Fix inverted expectFail boolean
Dieser Commit ist enthalten in:
Ursprung
2e10936b3d
Commit
c10e48320b
@ -235,7 +235,7 @@ public class WorldEditPlugin extends JavaPlugin {
|
||||
// datapacks aren't loaded until just before the world is, and bukkit has no event for this
|
||||
// so the earliest we can do this is in WorldInit
|
||||
setupTags();
|
||||
setupBiomes(true); // FAWE - load biomes later. Initialize biomes twice to allow for the registry to be present for
|
||||
setupBiomes(false); // FAWE - load biomes later. Initialize biomes twice to allow for the registry to be present for
|
||||
// plugins requiring WE biomes during startup, as well as allowing custom biomes loaded later on to be present in WE.
|
||||
WorldEdit.getInstance().getEventBus().post(new PlatformReadyEvent(platform));
|
||||
}
|
||||
@ -244,7 +244,7 @@ public class WorldEditPlugin extends JavaPlugin {
|
||||
private void initializeRegistries() {
|
||||
// FAWE start - move Biomes to their own method. Initialize biomes twice to allow for the registry to be present for
|
||||
// plugins requiring WE biomes during startup, as well as allowing custom biomes loaded later on to be present in WE.
|
||||
setupBiomes(false);
|
||||
setupBiomes(true);
|
||||
// FAWE end
|
||||
/*
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren