summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/APIDump/Hooks/OnPlayerPlacedBlock.lua
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-12-24 20:02:51 +0100
committerMattes D <github@xoft.cz>2014-12-24 20:02:51 +0100
commit5609d76ed7d8026b3bcaeb02fb42bd9ba2f27c96 (patch)
tree6ad394364397045fca24d4ce1b7469ba0f5be9c7 /MCServer/Plugins/APIDump/Hooks/OnPlayerPlacedBlock.lua
parentFixed redstone dust placement on upside-down slabs. (diff)
downloadcuberite-5609d76ed7d8026b3bcaeb02fb42bd9ba2f27c96.tar
cuberite-5609d76ed7d8026b3bcaeb02fb42bd9ba2f27c96.tar.gz
cuberite-5609d76ed7d8026b3bcaeb02fb42bd9ba2f27c96.tar.bz2
cuberite-5609d76ed7d8026b3bcaeb02fb42bd9ba2f27c96.tar.lz
cuberite-5609d76ed7d8026b3bcaeb02fb42bd9ba2f27c96.tar.xz
cuberite-5609d76ed7d8026b3bcaeb02fb42bd9ba2f27c96.tar.zst
cuberite-5609d76ed7d8026b3bcaeb02fb42bd9ba2f27c96.zip
Diffstat (limited to 'MCServer/Plugins/APIDump/Hooks/OnPlayerPlacedBlock.lua')
-rw-r--r--MCServer/Plugins/APIDump/Hooks/OnPlayerPlacedBlock.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/MCServer/Plugins/APIDump/Hooks/OnPlayerPlacedBlock.lua b/MCServer/Plugins/APIDump/Hooks/OnPlayerPlacedBlock.lua
index 54888a6db..6445a76b4 100644
--- a/MCServer/Plugins/APIDump/Hooks/OnPlayerPlacedBlock.lua
+++ b/MCServer/Plugins/APIDump/Hooks/OnPlayerPlacedBlock.lua
@@ -12,7 +12,11 @@ return
Use the {{cPlayer}}:GetWorld() function to get the world to which the block belongs.</p>
<p>
See also the {{OnPlayerPlacingBlock|HOOK_PLAYER_PLACING_BLOCK}} hook for a similar hook called
- before the placement.
+ before the placement.</p>
+ <p>
+ If the client action results in multiple blocks being placed (such as a bed or a door), each separate
+ block is reported through this hook. All the blocks are already present in the world before the first
+ instance of this hook is called.
]],
Params =
{
@@ -20,10 +24,6 @@ return
{ Name = "BlockX", Type = "number", Notes = "X-coord of the block" },
{ Name = "BlockY", Type = "number", Notes = "Y-coord of the block" },
{ Name = "BlockZ", Type = "number", Notes = "Z-coord of the block" },
- { Name = "BlockFace", Type = "number", Notes = "Face of the existing block upon which the player interacted. One of the BLOCK_FACE_ constants" },
- { Name = "CursorX", Type = "number", Notes = "X-coord of the cursor within the block face (0 .. 15)" },
- { Name = "CursorY", Type = "number", Notes = "Y-coord of the cursor within the block face (0 .. 15)" },
- { Name = "CursorZ", Type = "number", Notes = "Z-coord of the cursor within the block face (0 .. 15)" },
{ Name = "BlockType", Type = "BLOCKTYPE", Notes = "The block type of the block" },
{ Name = "BlockMeta", Type = "NIBBLETYPE", Notes = "The block meta of the block" },
},