Skip to content

Commit

Permalink
update gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
HybridDog committed May 30, 2014
1 parent 2826178 commit 3b4c25c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -1 +1,4 @@
## Generic ignorable patterns and files
*~
.*.swp
debug.txt
File renamed without changes
10 changes: 5 additions & 5 deletions glow/init.lua
Expand Up @@ -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(),
Expand All @@ -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'},
},
})

Expand Down
Binary file added glow/textures/glow_lamp_frame.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added glow/textures/glow_lamp_frame_normal.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added glow/textures/glow_stone_normal.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3b4c25c

Please sign in to comment.