aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0811-Implement-getComputedBiome-API.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0811-Implement-getComputedBiome-API.patch')
-rw-r--r--patches/server/0811-Implement-getComputedBiome-API.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/patches/server/0811-Implement-getComputedBiome-API.patch b/patches/server/0811-Implement-getComputedBiome-API.patch
index fe646334c6..0c09a29719 100644
--- a/patches/server/0811-Implement-getComputedBiome-API.patch
+++ b/patches/server/0811-Implement-getComputedBiome-API.patch
@@ -23,10 +23,10 @@ index b69df51f2a1eec62792e193f64a1815ad6a87e1f..f4f1150e6be2bff0b856145159469197
public void setBiome(Location location, Biome biome) {
this.setBiome(location.getBlockX(), location.getBlockY(), location.getBlockZ(), biome);
diff --git a/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java b/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java
-index 84911c7c6d038aadd3d84ac4797feaa91a556c3e..4aa7ea31c9d0e0bb5522301dc111d6a4a2e421fc 100644
+index d0102a0e7cf3a52b5a2a89f2dc0994fa463eb8c8..e4f2e1371e481201e4d8b471a8f6f87ba0604028 100644
--- a/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java
+++ b/src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java
-@@ -342,6 +342,13 @@ public class CraftBlock implements Block {
+@@ -345,6 +345,13 @@ public class CraftBlock implements Block {
return this.getWorld().getBiome(this.getX(), this.getY(), this.getZ());
}