diff options
author | Julian Laubstein <julianlaubstein@yahoo.de> | 2015-08-13 10:19:24 +0200 |
---|---|---|
committer | Julian Laubstein <julianlaubstein@yahoo.de> | 2015-08-13 10:19:24 +0200 |
commit | 24e8edb19cc376223d4300c2ee3a92bea9d86c04 (patch) | |
tree | 462e41b1a76eb51f442cac3785adeb38afaef115 /MCServer/Plugins/APIDump/Hooks/OnPreCrafting.lua | |
parent | Merge pull request #2417 from mjhanninen/fix-clang-warnings (diff) | |
download | cuberite-24e8edb19cc376223d4300c2ee3a92bea9d86c04.tar cuberite-24e8edb19cc376223d4300c2ee3a92bea9d86c04.tar.gz cuberite-24e8edb19cc376223d4300c2ee3a92bea9d86c04.tar.bz2 cuberite-24e8edb19cc376223d4300c2ee3a92bea9d86c04.tar.lz cuberite-24e8edb19cc376223d4300c2ee3a92bea9d86c04.tar.xz cuberite-24e8edb19cc376223d4300c2ee3a92bea9d86c04.tar.zst cuberite-24e8edb19cc376223d4300c2ee3a92bea9d86c04.zip |
Diffstat (limited to '')
-rw-r--r-- | MCServer/Plugins/APIDump/Hooks/OnPreCrafting.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MCServer/Plugins/APIDump/Hooks/OnPreCrafting.lua b/MCServer/Plugins/APIDump/Hooks/OnPreCrafting.lua index 5a5347310..8f24fc881 100644 --- a/MCServer/Plugins/APIDump/Hooks/OnPreCrafting.lua +++ b/MCServer/Plugins/APIDump/Hooks/OnPreCrafting.lua @@ -6,13 +6,13 @@ return 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 MCServer. + {{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 MCServer + 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 = @@ -22,7 +22,7 @@ return { 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 MCServer + 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 |