aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/api/0483-Add-enchantment-seed-update-API.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/api/0483-Add-enchantment-seed-update-API.patch')
-rw-r--r--patches/api/0483-Add-enchantment-seed-update-API.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/patches/api/0483-Add-enchantment-seed-update-API.patch b/patches/api/0483-Add-enchantment-seed-update-API.patch
new file mode 100644
index 0000000000..3b9ef102cd
--- /dev/null
+++ b/patches/api/0483-Add-enchantment-seed-update-API.patch
@@ -0,0 +1,26 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: okx-code <[email protected]>
+Date: Sat, 17 Aug 2024 13:02:56 +0100
+Subject: [PATCH] Add enchantment seed update API
+
+
+diff --git a/src/main/java/org/bukkit/inventory/view/EnchantmentView.java b/src/main/java/org/bukkit/inventory/view/EnchantmentView.java
+index 18014f3aa0cb1aab7d8ca5d9257a3a5b5c54eff2..73740c2f570dd149bf3f00766cdfa9a25098de1a 100644
+--- a/src/main/java/org/bukkit/inventory/view/EnchantmentView.java
++++ b/src/main/java/org/bukkit/inventory/view/EnchantmentView.java
+@@ -22,6 +22,15 @@ public interface EnchantmentView extends InventoryView {
+ */
+ int getEnchantmentSeed();
+
++ // Paper start - add enchantment seed update API
++ /**
++ * Sets the random enchantment seed used in this view. Loses its effect once the view is closed.
++ *
++ * @param seed the random seed to use
++ */
++ void setEnchantmentSeed(int seed);
++ // Paper end - add enchantment seed update API
++
+ /**
+ * Gets the offers of this EnchantmentView
+ *