summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/APIDump/Hooks/OnPreCrafting.lua
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-08-26 10:58:51 +0200
committerMattes D <github@xoft.cz>2015-09-05 22:01:21 +0200
commitdac97826f7d0c9b9135c1a08c4d5f16b61494bd1 (patch)
treeec17a9703fe734956e4f151cb5306befc4fd7571 /MCServer/Plugins/APIDump/Hooks/OnPreCrafting.lua
parentMerge pull request #2459 from cuberite/fixes (diff)
downloadcuberite-dac97826f7d0c9b9135c1a08c4d5f16b61494bd1.tar
cuberite-dac97826f7d0c9b9135c1a08c4d5f16b61494bd1.tar.gz
cuberite-dac97826f7d0c9b9135c1a08c4d5f16b61494bd1.tar.bz2
cuberite-dac97826f7d0c9b9135c1a08c4d5f16b61494bd1.tar.lz
cuberite-dac97826f7d0c9b9135c1a08c4d5f16b61494bd1.tar.xz
cuberite-dac97826f7d0c9b9135c1a08c4d5f16b61494bd1.tar.zst
cuberite-dac97826f7d0c9b9135c1a08c4d5f16b61494bd1.zip
Diffstat (limited to 'MCServer/Plugins/APIDump/Hooks/OnPreCrafting.lua')
-rw-r--r--MCServer/Plugins/APIDump/Hooks/OnPreCrafting.lua37
1 files changed, 0 insertions, 37 deletions
diff --git a/MCServer/Plugins/APIDump/Hooks/OnPreCrafting.lua b/MCServer/Plugins/APIDump/Hooks/OnPreCrafting.lua
deleted file mode 100644
index 8f24fc881..000000000
--- a/MCServer/Plugins/APIDump/Hooks/OnPreCrafting.lua
+++ /dev/null
@@ -1,37 +0,0 @@
-return
-{
- HOOK_PRE_CRAFTING =
- {
- CalledWhen = "Before the built-in recipes are checked.",
- DefaultFnName = "OnPreCrafting", -- also used as pagename
- Desc = [[
- This hook is called when a {{cPlayer|player}} changes contents of their
- {{cCraftingGrid|crafting grid}}, before the built-in recipes are searched for a match by Cuberite.
- Plugins may use this hook to provide a custom recipe.</p>
- <p>
- If you intend to tweak built-in recipes, use the {{OnPostCrafting|HOOK_POST_CRAFTING}} hook, because
- that will be called once the built-in recipe is matched.</p>
- <p>
- Also note a third hook, {{OnCraftingNoRecipe|HOOK_CRAFTING_NO_RECIPE}}, that is called when Cuberite
- cannot find any built-in recipe for the given ingredients.
- ]],
- Params =
- {
- { Name = "Player", Type = "{{cPlayer}}", Notes = "The player who has changed their crafting grid contents" },
- { Name = "Grid", Type = "{{cCraftingGrid}}", Notes = "The new crafting grid contents" },
- { Name = "Recipe", Type = "{{cCraftingRecipe}}", Notes = "The recipe that Cuberite will use. Modify this object to change the recipe" },
- },
- Returns = [[
- If the function returns false or no value, other plugins' callbacks are called and then Cuberite
- searches the built-in recipes. The Recipe output parameter is ignored in this case.</p>
- <p>
- If the function returns true, no other callbacks are called for this event and Cuberite uses the
- recipe stored in the Recipe output parameter.
- ]],
- }, -- HOOK_PRE_CRAFTING
-}
-
-
-
-
-