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:
@ -39,6 +39,7 @@ technic.chests:register("Iron", {
|
||||
infotext = false,
|
||||
color = false,
|
||||
locked = false,
|
||||
protected = false,
|
||||
})
|
||||
|
||||
technic.chests:register("Iron", {
|
||||
@ -49,5 +50,35 @@ technic.chests:register("Iron", {
|
||||
infotext = false,
|
||||
color = false,
|
||||
locked = true,
|
||||
protected = false,
|
||||
})
|
||||
|
||||
if minetest.get_modpath("protector") then
|
||||
minetest.register_craft({
|
||||
output = 'technic:iron_protected_chest 1',
|
||||
recipe = {
|
||||
{cast_iron_ingot,cast_iron_ingot,cast_iron_ingot},
|
||||
{cast_iron_ingot,'protector:chest',cast_iron_ingot},
|
||||
{cast_iron_ingot,cast_iron_ingot,cast_iron_ingot},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic:iron_protected_chest 1',
|
||||
recipe = {
|
||||
{'default:copper_ingot'},
|
||||
{'technic:iron_chest'},
|
||||
}
|
||||
})
|
||||
|
||||
technic.chests:register("Iron", {
|
||||
width = 9,
|
||||
height = 5,
|
||||
sort = true,
|
||||
autosort = false,
|
||||
infotext = false,
|
||||
color = false,
|
||||
locked = false,
|
||||
protected = true,
|
||||
})
|
||||
end
|
||||
|
Reference in New Issue
Block a user