Skip to content

Instantly share code, notes, and snippets.

@cornernote
Created October 2, 2012 12:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cornernote/3818827 to your computer and use it in GitHub Desktop.
Save cornernote/3818827 to your computer and use it in GitHub Desktop.
Override Register Functions
local minetest_register_craft = minetest.register_craft -- preserve the old function
minetest.register_craft = function (options)
minetest_register_craft(options) -- call the old function
-- insert your code here --
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment