diff --git a/src/world/World.php b/src/world/World.php index 34d54a8fd..a220efa39 100644 --- a/src/world/World.php +++ b/src/world/World.php @@ -2032,25 +2032,6 @@ class World implements ChunkManager{ $this->getChunk($x >> 4, $z >> 4, true)->setBiomeId($x & 0x0f, $z & 0x0f, $biomeId); } - /** - * @param int $x - * @param int $z - * - * @return int - */ - public function getHeightMap(int $x, int $z) : int{ - return $this->getChunk($x >> 4, $z >> 4, true)->getHeightMap($x & 0x0f, $z & 0x0f); - } - - /** - * @param int $x - * @param int $z - * @param int $value - */ - public function setHeightMap(int $x, int $z, int $value){ - $this->getChunk($x >> 4, $z >> 4, true)->setHeightMap($x & 0x0f, $z & 0x0f, $value); - } - /** * @return Chunk[] */