tape.lua 241 B

12345678910
  1. local modname = minetest.get_current_modname()
  2. local S = minetest.get_translator(modname)
  3. minetest.register_craftitem(modname .. ":tape",
  4. {
  5. description = S("Turing tape"),
  6. inventory_image = modname .. "_tape.png",
  7. stack_max = 1,
  8. })