summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/APIDump/Hooks/OnPlayerEating.lua
diff options
context:
space:
mode:
Diffstat (limited to 'MCServer/Plugins/APIDump/Hooks/OnPlayerEating.lua')
-rw-r--r--MCServer/Plugins/APIDump/Hooks/OnPlayerEating.lua27
1 files changed, 0 insertions, 27 deletions
diff --git a/MCServer/Plugins/APIDump/Hooks/OnPlayerEating.lua b/MCServer/Plugins/APIDump/Hooks/OnPlayerEating.lua
deleted file mode 100644
index e77d02a96..000000000
--- a/MCServer/Plugins/APIDump/Hooks/OnPlayerEating.lua
+++ /dev/null
@@ -1,27 +0,0 @@
-return
-{
- HOOK_PLAYER_EATING =
- {
- CalledWhen = "When the player starts eating",
- DefaultFnName = "OnPlayerEating", -- also used as pagename
- Desc = [[
- This hook gets called when the {{cPlayer|player}} starts eating, after the server checks that the
- player can indeed eat (is not satiated and is holding food). Plugins may still refuse the eating by
- returning true.
- ]],
- Params =
- {
- { Name = "Player", Type = "{{cPlayer}}", Notes = "The player who started eating" },
- },
- Returns = [[
- If the function returns false or no value, the server calls the next plugin handler, and finally
- lets the player eat. If the function returns true, the server doesn't call any more callbacks for
- this event and aborts the eating. A "disallow" packet is sent to the client.
- ]],
- }, -- HOOK_PLAYER_EATING
-}
-
-
-
-
-