init.lua 224 B

12345678910111213
  1. local path = minetest.get_modpath("barter_table")
  2. dofile(path .. "/barter.lua")
  3. minetest.register_craft({
  4. output = 'barter_table:barter',
  5. recipe = {
  6. {'default:sign_wall_wood'},
  7. {'chests:chest_public_closed'},
  8. }
  9. })