diff --git a/paper-api/src/main/java/org/bukkit/World.java b/paper-api/src/main/java/org/bukkit/World.java index 89a08cc93a..4a703ddbc8 100644 --- a/paper-api/src/main/java/org/bukkit/World.java +++ b/paper-api/src/main/java/org/bukkit/World.java @@ -1090,6 +1090,9 @@ public interface World extends PluginMessageRecipient, Metadatable { *
* It is safe to run this method when the block does not exist, it will * not create the block. + *
+ * This method will return the raw temperature without adjusting for block + * height effects. * * @param x X coordinate of the block * @param z Z coordinate of the block diff --git a/paper-api/src/main/java/org/bukkit/block/Block.java b/paper-api/src/main/java/org/bukkit/block/Block.java index 6041a66c9e..46a29d3d54 100644 --- a/paper-api/src/main/java/org/bukkit/block/Block.java +++ b/paper-api/src/main/java/org/bukkit/block/Block.java @@ -308,7 +308,10 @@ public interface Block extends Metadatable { boolean isLiquid(); /** - * Gets the temperature of the biome of this block + * Gets the temperature of this block. + *
+ * If the raw biome temperature without adjusting for height effects is + * required then please use {@link World#getTemperature(int, int)}. * * @return Temperature of this block */