diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2020-09-24 12:59:02 +0200 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2020-09-25 11:07:01 +0200 |
commit | 7574f68a4806c54e1652df56752fb5eb4ef941b3 (patch) | |
tree | c10b3c973de8827d5adc256c6d18c8f1e88eefd3 /src/BlockEntities/BlockEntity.h | |
parent | Unify block entity pickup conversion (diff) | |
download | cuberite-7574f68a4806c54e1652df56752fb5eb4ef941b3.tar cuberite-7574f68a4806c54e1652df56752fb5eb4ef941b3.tar.gz cuberite-7574f68a4806c54e1652df56752fb5eb4ef941b3.tar.bz2 cuberite-7574f68a4806c54e1652df56752fb5eb4ef941b3.tar.lz cuberite-7574f68a4806c54e1652df56752fb5eb4ef941b3.tar.xz cuberite-7574f68a4806c54e1652df56752fb5eb4ef941b3.tar.zst cuberite-7574f68a4806c54e1652df56752fb5eb4ef941b3.zip |
Diffstat (limited to 'src/BlockEntities/BlockEntity.h')
-rw-r--r-- | src/BlockEntities/BlockEntity.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/BlockEntities/BlockEntity.h b/src/BlockEntities/BlockEntity.h index 6232eb1ef..0d67bcef9 100644 --- a/src/BlockEntities/BlockEntity.h +++ b/src/BlockEntities/BlockEntity.h @@ -85,7 +85,7 @@ public: OwnedBlockEntity Clone(Vector3i a_Pos); /** Returns the contents of this block entity that it would drop if broken. - Note that the block itself is not included; that's handled by the block handler. */ + Note that the block handler will usually handle pickups for the block itself, in addition to any items returned here. */ virtual cItems ConvertToPickups() const; /** Copies all properties of a_Src into this entity, except for its m_World and location. |