mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-05-12 08:49:42 +00:00
fix PhpStorm's screwup with World->setBlock() doc comment
it's not the first time i've seen it do this, and i still have no idea why it does this.
This commit is contained in:
parent
e388ac9c8b
commit
6fdcb09891
@ -1446,6 +1446,7 @@ class World implements ChunkManager{
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the block at the given Vector3 coordinates.
|
* Sets the block at the given Vector3 coordinates.
|
||||||
|
* @see World::setBlockAt()
|
||||||
*
|
*
|
||||||
* @param Vector3 $pos
|
* @param Vector3 $pos
|
||||||
* @param Block $block
|
* @param Block $block
|
||||||
@ -1454,8 +1455,6 @@ class World implements ChunkManager{
|
|||||||
* @return bool Whether the block has been updated or not
|
* @return bool Whether the block has been updated or not
|
||||||
*
|
*
|
||||||
* @throws \InvalidArgumentException if the position is out of the world bounds
|
* @throws \InvalidArgumentException if the position is out of the world bounds
|
||||||
*@see World::setBlockAt()
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
public function setBlock(Vector3 $pos, Block $block, bool $update = true) : bool{
|
public function setBlock(Vector3 $pos, Block $block, bool $update = true) : bool{
|
||||||
return $this->setBlockAt((int) floor($pos->x), (int) floor($pos->y), (int) floor($pos->z), $block, $update);
|
return $this->setBlockAt((int) floor($pos->x), (int) floor($pos->y), (int) floor($pos->z), $block, $update);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user