summaryrefslogtreecommitdiffstats
path: root/source/Blocks/BlockHandler.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-11-05 22:19:46 +0100
committermadmaxoft <github@xoft.cz>2013-11-05 22:19:46 +0100
commit6bd30954c54faf905c86faa54718caa457e43713 (patch)
treead59604164d684ec17889be05ba9e054faa3d273 /source/Blocks/BlockHandler.h
parentAPIDump: Documented ItemCategory. (diff)
downloadcuberite-6bd30954c54faf905c86faa54718caa457e43713.tar
cuberite-6bd30954c54faf905c86faa54718caa457e43713.tar.gz
cuberite-6bd30954c54faf905c86faa54718caa457e43713.tar.bz2
cuberite-6bd30954c54faf905c86faa54718caa457e43713.tar.lz
cuberite-6bd30954c54faf905c86faa54718caa457e43713.tar.xz
cuberite-6bd30954c54faf905c86faa54718caa457e43713.tar.zst
cuberite-6bd30954c54faf905c86faa54718caa457e43713.zip
Diffstat (limited to '')
-rw-r--r--source/Blocks/BlockHandler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Blocks/BlockHandler.h b/source/Blocks/BlockHandler.h
index 0487505ee..81d9f240c 100644
--- a/source/Blocks/BlockHandler.h
+++ b/source/Blocks/BlockHandler.h
@@ -66,7 +66,7 @@ public:
/// Called if the user right clicks the block and the block is useable
virtual void OnUse(cWorld * a_World, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ);
- /// Called when the item is mined to convert it into pickups. Pickups may specify multiple items.
+ /// Called when the item is mined to convert it into pickups. Pickups may specify multiple items. Appends items to a_Pickups, preserves its original contents
virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta);
/// Handles the dropping of a block based on what ConvertToDrops() returns. This will not destroy the block. a_Digger is the entity causing the drop; it may be NULL