mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-22 10:35:38 +01:00
Tweak Block.getTemperature to return actual block temperature
This commit is contained in:
parent
f55c819185
commit
1b982fd67e
@ -436,7 +436,7 @@ public class CraftBlock implements Block {
|
||||
}
|
||||
|
||||
public double getTemperature() {
|
||||
return getWorld().getTemperature(getX(), getZ());
|
||||
return world.getBiome(position).c(position); // PAIL: getAdjustedTemperature
|
||||
}
|
||||
|
||||
public double getHumidity() {
|
||||
|
Loading…
Reference in New Issue
Block a user