1
0
mirror of https://github.com/minetest/minetest_game.git synced 2024-09-30 07:30:20 +02:00

Minor code modification

This commit is contained in:
An0n3m0us 2019-05-29 22:51:51 +01:00
parent ee46de28d3
commit da937a2289

View File

@ -456,7 +456,7 @@ function doors.register(name, def)
end
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",
inventory_image = "doors_item_wood.png",
groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2},
@ -468,7 +468,7 @@ doors.register("door_wood", {
})
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",
inventory_image = "doors_item_steel.png",
protected = true,