diff options
author | Safwat Halaby <SafwatHalaby@users.noreply.github.com> | 2015-12-13 13:43:53 +0100 |
---|---|---|
committer | Safwat Halaby <SafwatHalaby@users.noreply.github.com> | 2015-12-13 13:43:53 +0100 |
commit | 417a646d7d32c05d837451de9ae64cbcdc53a782 (patch) | |
tree | cf8f3e6ed33c7dc5e98baa6a530683749ae40e51 /Server/Plugins/APIDump/Hooks/OnPlayerUsingBlock.lua | |
parent | Merge pull request #2737 from Gargaj/snowgolem (diff) | |
parent | allow use failures to propagate from the entity/block to the player (diff) | |
download | cuberite-417a646d7d32c05d837451de9ae64cbcdc53a782.tar cuberite-417a646d7d32c05d837451de9ae64cbcdc53a782.tar.gz cuberite-417a646d7d32c05d837451de9ae64cbcdc53a782.tar.bz2 cuberite-417a646d7d32c05d837451de9ae64cbcdc53a782.tar.lz cuberite-417a646d7d32c05d837451de9ae64cbcdc53a782.tar.xz cuberite-417a646d7d32c05d837451de9ae64cbcdc53a782.tar.zst cuberite-417a646d7d32c05d837451de9ae64cbcdc53a782.zip |
Diffstat (limited to 'Server/Plugins/APIDump/Hooks/OnPlayerUsingBlock.lua')
-rw-r--r-- | Server/Plugins/APIDump/Hooks/OnPlayerUsingBlock.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Server/Plugins/APIDump/Hooks/OnPlayerUsingBlock.lua b/Server/Plugins/APIDump/Hooks/OnPlayerUsingBlock.lua index b4ecb5ca1..3c496cfb1 100644 --- a/Server/Plugins/APIDump/Hooks/OnPlayerUsingBlock.lua +++ b/Server/Plugins/APIDump/Hooks/OnPlayerUsingBlock.lua @@ -35,7 +35,8 @@ return Returns = [[ If the function returns false or no value, other plugins' callbacks are called and then Cuberite processes the interaction. If the function returns true, no other callbacks are called for this - event and the interaction is silently dropped. + event and the block is treated like any other block (i.e. if it's possible to place a torch on, + it will be placed, and so on.) ]], }, -- HOOK_PLAYER_USING_BLOCK } |