Block: remove obsolete note from Block::isSameType()

This commit is contained in:
Dylan K. Taylor 2022-07-03 00:49:57 +01:00
parent db9c7de35c
commit c7ba791ff8
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -216,9 +216,6 @@ class Block{
/**
* Returns whether the given block has an equivalent type to this one. This compares the type IDs.
*
* Note: This ignores additional IDs used to represent additional states. This means that, for example, a lit
* furnace and unlit furnace are considered the same type.
*/
public function isSameType(Block $other) : bool{
return $this->getTypeId() === $other->getTypeId();