mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-21 14:53:16 -04:00
Minor code modification
This commit is contained in:
parent
ee46de28d3
commit
da937a2289
1 changed files with 2 additions and 2 deletions
|
@ -456,7 +456,7 @@ function doors.register(name, def)
|
||||||
end
|
end
|
||||||
|
|
||||||
doors.register("door_wood", {
|
doors.register("door_wood", {
|
||||||
tiles = {{ name = "doors_door_wood.png", backface_culling = true }},
|
tiles = {{name = "doors_door_wood.png", backface_culling = true}},
|
||||||
description = "Wooden Door",
|
description = "Wooden Door",
|
||||||
inventory_image = "doors_item_wood.png",
|
inventory_image = "doors_item_wood.png",
|
||||||
groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2},
|
groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2},
|
||||||
|
@ -468,7 +468,7 @@ doors.register("door_wood", {
|
||||||
})
|
})
|
||||||
|
|
||||||
doors.register("door_steel", {
|
doors.register("door_steel", {
|
||||||
tiles = {{ name = "doors_door_steel.png", backface_culling = true }},
|
tiles = {{name = "doors_door_steel.png", backface_culling = true}},
|
||||||
description = "Steel Door",
|
description = "Steel Door",
|
||||||
inventory_image = "doors_item_steel.png",
|
inventory_image = "doors_item_steel.png",
|
||||||
protected = true,
|
protected = true,
|
||||||
|
|
Loading…
Add table
Reference in a new issue