aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/api/0353-Expose-vanilla-BiomeProvider-from-WorldInfo.patch
diff options
context:
space:
mode:
authorJake Potrebic <[email protected]>2022-03-04 00:09:43 -0800
committerGitHub <[email protected]>2022-03-04 09:09:43 +0100
commit15b6b3db2cf24c98afbfb0849e694875d18fc021 (patch)
tree03e884d0c7fe2ce292825b5b51ec4c9a6ce2e8cc /patches/api/0353-Expose-vanilla-BiomeProvider-from-WorldInfo.patch
parent753bf2c1034c5f35cc0839001d12363a44f936fc (diff)
downloadPaper-15b6b3db2cf24c98afbfb0849e694875d18fc021.tar.gz
Paper-15b6b3db2cf24c98afbfb0849e694875d18fc021.zip
Add StructuresLocateEvent as replacement for StructureLocateEvent (#7524)
Diffstat (limited to 'patches/api/0353-Expose-vanilla-BiomeProvider-from-WorldInfo.patch')
-rw-r--r--patches/api/0353-Expose-vanilla-BiomeProvider-from-WorldInfo.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/patches/api/0353-Expose-vanilla-BiomeProvider-from-WorldInfo.patch b/patches/api/0353-Expose-vanilla-BiomeProvider-from-WorldInfo.patch
new file mode 100644
index 0000000000..9b189fc918
--- /dev/null
+++ b/patches/api/0353-Expose-vanilla-BiomeProvider-from-WorldInfo.patch
@@ -0,0 +1,24 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Jason Penilla <[email protected]>
+Date: Thu, 6 Jan 2022 15:56:16 -0800
+Subject: [PATCH] Expose vanilla BiomeProvider from WorldInfo
+
+
+diff --git a/src/main/java/org/bukkit/generator/WorldInfo.java b/src/main/java/org/bukkit/generator/WorldInfo.java
+index 5bf00f46e8f3a80fec2a8a738e4d0d92461cfc92..5067f1371433cccd3287af7f03e152f2c3c1ece3 100644
+--- a/src/main/java/org/bukkit/generator/WorldInfo.java
++++ b/src/main/java/org/bukkit/generator/WorldInfo.java
+@@ -57,4 +57,13 @@ public interface WorldInfo {
+ * @return Maximum height of the world
+ */
+ int getMaxHeight();
++
++ // Paper start
++ /**
++ * Get the vanilla {@link BiomeProvider} for this world.
++ *
++ * @return vanilla biome provider
++ */
++ @NotNull BiomeProvider vanillaBiomeProvider();
++ // Paper end
+ }