summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/APIDump/Hooks/OnPlayerRightClickingEntity.lua
diff options
context:
space:
mode:
Diffstat (limited to 'MCServer/Plugins/APIDump/Hooks/OnPlayerRightClickingEntity.lua')
-rw-r--r--MCServer/Plugins/APIDump/Hooks/OnPlayerRightClickingEntity.lua27
1 files changed, 0 insertions, 27 deletions
diff --git a/MCServer/Plugins/APIDump/Hooks/OnPlayerRightClickingEntity.lua b/MCServer/Plugins/APIDump/Hooks/OnPlayerRightClickingEntity.lua
deleted file mode 100644
index b271cf058..000000000
--- a/MCServer/Plugins/APIDump/Hooks/OnPlayerRightClickingEntity.lua
+++ /dev/null
@@ -1,27 +0,0 @@
-return
-{
- HOOK_PLAYER_RIGHT_CLICKING_ENTITY =
- {
- CalledWhen = "A player has right-clicked an entity. Plugins may override / refuse.",
- DefaultFnName = "OnPlayerRightClickingEntity", -- also used as pagename
- Desc = [[
- This hook is called when the {{cPlayer|player}} right-clicks an {{cEntity|entity}}. Plugins may
- override the default behavior or even cancel the default processing.
- ]],
- Params =
- {
- { Name = "Player", Type = "{{cPlayer}}", Notes = "The player who has right-clicked the entity" },
- { Name = "Entity", Type = "{{cEntity}} descendant", Notes = "The entity that has been right-clicked" },
- },
- Returns = [[
- If the functino returns false or no value, Cuberite calls other plugins' callbacks and finally does
- the default processing for the right-click. If the function returns true, no other callbacks are
- called and the default processing is skipped.
- ]],
- }, -- HOOK_PLAYER_RIGHT_CLICKING_ENTITY
-}
-
-
-
-
-