aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/api/0358-Add-NamespacedKey-biome-methods.patch
blob: 29bd350af8b3b39c06719ad72a0bd771d185b2a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Josh Roy <10731363+JRoy@users.noreply.github.com>
Date: Sun, 14 Aug 2022 12:22:54 -0400
Subject: [PATCH] Add NamespacedKey biome methods

Co-authored-by: Thonk <30448663+ExcessiveAmountsOfZombies@users.noreply.github.com>

diff --git a/src/main/java/org/bukkit/UnsafeValues.java b/src/main/java/org/bukkit/UnsafeValues.java
index 240ac3f658ed24d3980707e146e6dfee6c9b31a0..dad90b98413b57a878f940b8f423bd77e36fd179 100644
--- a/src/main/java/org/bukkit/UnsafeValues.java
+++ b/src/main/java/org/bukkit/UnsafeValues.java
@@ -221,4 +221,33 @@ public interface UnsafeValues {
      */
     @org.jetbrains.annotations.NotNull org.bukkit.attribute.Attributable getDefaultEntityAttributes(@org.jetbrains.annotations.NotNull NamespacedKey entityKey);
     // Paper end
+
+    // Paper start - namespaced key biome methods
+    /**
+     * Gets the {@link NamespacedKey} for the biome at the given location.
+     *
+     * @param accessor The {@link RegionAccessor} of the provided coordinates
+     * @param x X-coordinate of the block
+     * @param y Y-coordinate of the block
+     * @param z Z-coordinate of the block
+     * @return the biome's {@link NamespacedKey}
+     */
+    @org.jetbrains.annotations.NotNull
+    NamespacedKey getBiomeKey(RegionAccessor accessor, int x, int y, int z);
+
+    /**
+     * Sets the biome at the given location to a biome registered
+     * to the given {@link NamespacedKey}. If no biome by the given
+     * {@link NamespacedKey} exists, an {@link IllegalStateException}
+     * will be thrown.
+     *
+     * @param accessor The {@link RegionAccessor} of the provided coordinates
+     * @param x X-coordinate of the block
+     * @param y Y-coordinate of the block
+     * @param z Z-coordinate of the block
+     * @param biomeKey Biome key
+     * @throws IllegalStateException if no biome by the given key is registered.
+     */
+    void setBiomeKey(RegionAccessor accessor, int x, int y, int z, NamespacedKey biomeKey);
+    // Paper end - namespaced key biome methods
 }