update gitignore
This commit is contained in:
parent
282617852b
commit
3b4c25ce72
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,4 @@
|
||||
## Generic ignorable patterns and files
|
||||
*~
|
||||
.*.swp
|
||||
debug.txt
|
||||
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
@ -13,7 +13,7 @@ minetest.register_node("glow:stone", {
|
||||
|
||||
minetest.register_node("glow:lamp", {
|
||||
description = "Lamp",
|
||||
tile_images = {"glow_lamp.png"},
|
||||
tile_images = {"glow_stone.png^glow_lamp_frame.png"},
|
||||
light_source = LIGHT_MAX,
|
||||
groups = {cracky=3},
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
@ -23,16 +23,16 @@ minetest.register_node("glow:lamp", {
|
||||
minetest.register_craft( {
|
||||
output = '"glow:stone" 2',
|
||||
recipe = {
|
||||
{ 'default:stone','default:coal_lump','default:stone' }
|
||||
{'default:stone','default:coal_lump','default:stone'}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft( {
|
||||
output = '"glow:lamp" 6',
|
||||
recipe = {
|
||||
{ 'default:stick','default:glass', 'default:stick' },
|
||||
{ 'default:glass','glow:stone', 'default:glass' },
|
||||
{ 'default:stick','default:glass', 'default:stick' },
|
||||
{'default:stick', 'default:glass', 'default:stick'},
|
||||
{'default:glass', 'glow:stone', 'default:glass'},
|
||||
{'default:stick', 'default:glass', 'default:stick'},
|
||||
},
|
||||
})
|
||||
|
||||
|
BIN
glow/textures/glow_lamp_frame.png
Normal file
BIN
glow/textures/glow_lamp_frame.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 521 B |
BIN
glow/textures/glow_lamp_frame_normal.png
Normal file
BIN
glow/textures/glow_lamp_frame_normal.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 621 B |
BIN
glow/textures/glow_stone_normal.png
Normal file
BIN
glow/textures/glow_stone_normal.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
Loading…
x
Reference in New Issue
Block a user