mirror of
https://github.com/minetest-mods/technic.git
synced 2025-07-01 07:40:37 +02:00
Added protector mod support
This commit is contained in:
@ -17,11 +17,11 @@ minetest.register_craft({
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic:copper_locked_chest 1',
|
||||
recipe = {
|
||||
{'basic_materials:padlock'},
|
||||
{'technic:copper_chest'},
|
||||
}
|
||||
output = 'technic:copper_locked_chest 1',
|
||||
recipe = {
|
||||
{'basic_materials:padlock'},
|
||||
{'technic:copper_chest'},
|
||||
}
|
||||
})
|
||||
|
||||
technic.chests:register("Copper", {
|
||||
@ -32,6 +32,7 @@ technic.chests:register("Copper", {
|
||||
infotext = false,
|
||||
color = false,
|
||||
locked = false,
|
||||
protected = false,
|
||||
})
|
||||
|
||||
technic.chests:register("Copper", {
|
||||
@ -42,5 +43,35 @@ technic.chests:register("Copper", {
|
||||
infotext = false,
|
||||
color = false,
|
||||
locked = true,
|
||||
protected = false,
|
||||
})
|
||||
|
||||
if minetest.get_modpath("protector") then
|
||||
minetest.register_craft({
|
||||
output = 'technic:copper_protected_chest 1',
|
||||
recipe = {
|
||||
{'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
|
||||
{'default:copper_ingot','technic:iron_protected_chest','default:copper_ingot'},
|
||||
{'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic:copper_protected_chest 1',
|
||||
recipe = {
|
||||
{'default:copper_ingot'},
|
||||
{'technic:copper_chest'},
|
||||
}
|
||||
})
|
||||
|
||||
technic.chests:register("Copper", {
|
||||
width = 12,
|
||||
height = 5,
|
||||
sort = true,
|
||||
autosort = true,
|
||||
infotext = false,
|
||||
color = false,
|
||||
locked = false,
|
||||
protected = true,
|
||||
})
|
||||
end
|
||||
|
Reference in New Issue
Block a user