2024-06-14 23:07:44 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Spottedleaf <Spottedleaf@users.noreply.github.com>
|
|
|
|
Date: Sat, 1 Dec 2018 19:00:36 -0800
|
|
|
|
Subject: [PATCH] Add Heightmap API
|
|
|
|
|
|
|
|
Changed to use upstream's heightmap API - Machine_Maker
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/Location.java b/src/main/java/org/bukkit/Location.java
|
2024-10-22 18:23:19 +02:00
|
|
|
index fb4b6f0e908ffa50c3b2f8d04d9f3810898b8d5e..bdc065a486306236c7f0960718bea53bc0b0a9b6 100644
|
2024-06-14 23:07:44 +02:00
|
|
|
--- a/src/main/java/org/bukkit/Location.java
|
|
|
|
+++ b/src/main/java/org/bukkit/Location.java
|
|
|
|
@@ -649,6 +649,30 @@ public class Location implements Cloneable, ConfigurationSerializable, io.paperm
|
|
|
|
}
|
|
|
|
// Paper end - expand Location API
|
|
|
|
|
|
|
|
+ // Paper start - Add heightmap api
|
|
|
|
+ /**
|
|
|
|
+ * Returns a copy of this location except with y = getWorld().getHighestBlockYAt(this.getBlockX(), this.getBlockZ())
|
|
|
|
+ * @return A copy of this location except with y = getWorld().getHighestBlockYAt(this.getBlockX(), this.getBlockZ())
|
|
|
|
+ * @throws NullPointerException if {{@link #getWorld()}} is {@code null}
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ public Location toHighestLocation() {
|
|
|
|
+ return this.toHighestLocation(HeightMap.WORLD_SURFACE);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Returns a copy of this location except with y = getWorld().getHighestBlockYAt(this.getBlockX(), this.getBlockZ(), heightMap)
|
|
|
|
+ * @param heightMap The heightmap to use for finding the highest y location.
|
|
|
|
+ * @return A copy of this location except with y = getWorld().getHighestBlockYAt(this.getBlockX(), this.getBlockZ(), heightMap)
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ public Location toHighestLocation(@NotNull final HeightMap heightMap) {
|
|
|
|
+ final Location ret = this.clone();
|
|
|
|
+ ret.setY(this.getWorld().getHighestBlockYAt(this, heightMap));
|
|
|
|
+ return ret;
|
|
|
|
+ }
|
|
|
|
+ // Paper end - Add heightmap api
|
|
|
|
+
|
|
|
|
// Paper start - Expand Explosions API
|
|
|
|
/**
|
|
|
|
* Creates explosion at this location with given power
|