mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-29 19:33:51 -07:00
Rename package from io.papermc.paper.world.gen
to io.papermc.paper.world.generation
(#5894)
This commit is contained in:
@@ -4,13 +4,13 @@ Date: Sat, 19 Jun 2021 20:15:29 -0700
|
||||
Subject: [PATCH] Add Feature Stage API
|
||||
|
||||
|
||||
diff --git a/src/main/java/io/papermc/paper/world/gen/ProtoWorld.java b/src/main/java/io/papermc/paper/world/gen/ProtoWorld.java
|
||||
diff --git a/src/main/java/io/papermc/paper/world/generation/ProtoWorld.java b/src/main/java/io/papermc/paper/world/generation/ProtoWorld.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/io/papermc/paper/world/gen/ProtoWorld.java
|
||||
+++ b/src/main/java/io/papermc/paper/world/generation/ProtoWorld.java
|
||||
@@ -0,0 +0,0 @@
|
||||
+package io.papermc.paper.world.gen;
|
||||
+package io.papermc.paper.world.generation;
|
||||
+
|
||||
+import org.bukkit.World;
|
||||
+import org.bukkit.block.data.BlockData;
|
||||
@@ -296,7 +296,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
+ * @param world ProtoWorld to generate decorations with.
|
||||
+ */
|
||||
+ @SuppressWarnings("unused")
|
||||
+ public void generateDecorations(@NotNull io.papermc.paper.world.gen.ProtoWorld world) {
|
||||
+ public void generateDecorations(@NotNull io.papermc.paper.world.generation.ProtoWorld world) {
|
||||
+ // Do nothing by default to maintain compatibility with existing generators.
|
||||
+ }
|
||||
+ // Paper end
|
||||
|
Reference in New Issue
Block a user