summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/APIDump/Hooks/OnPlayerFoodLevelChange.lua
diff options
context:
space:
mode:
Diffstat (limited to 'MCServer/Plugins/APIDump/Hooks/OnPlayerFoodLevelChange.lua')
-rw-r--r--MCServer/Plugins/APIDump/Hooks/OnPlayerFoodLevelChange.lua27
1 files changed, 0 insertions, 27 deletions
diff --git a/MCServer/Plugins/APIDump/Hooks/OnPlayerFoodLevelChange.lua b/MCServer/Plugins/APIDump/Hooks/OnPlayerFoodLevelChange.lua
deleted file mode 100644
index 53637d5f1..000000000
--- a/MCServer/Plugins/APIDump/Hooks/OnPlayerFoodLevelChange.lua
+++ /dev/null
@@ -1,27 +0,0 @@
-return
-{
- HOOK_PLAYER_FOOD_LEVEL_CHANGE =
- {
- CalledWhen = "Called before the player food level changed. Plugin may override",
- DefaultFnName = "OnPlayerFoodLevelChange", -- also used as pagename
- Desc = [[
- This hook is called before the food level changes.
- The food level is not changed yet, plugins may choose
- to refuse the change.
- ]],
- Params =
- {
- { Name = "Player", Type = "{{cPlayer}}", Notes = "The player who changes the food level." },
- { Name = "NewFoodLevel", Type = "number", Notes = "The new food level." },
- },
- Returns = [[
- If the function returns false or no value, the next plugin's callback is called. Afterwards, the
- server changes the food level of the player. If the function returns true, no
- other callback is called for this event and the player's food level doesn't change.
- ]],
- }, -- HOOK_PLAYER_FOOD_LEVEL_CHANGE
-};
-
-
-
-