forked from mtcontrib/scifi_nodes
		
	Compare commits
	
		
			2 Commits
		
	
	
		
			fb1fdcf69e
			...
			master
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					2eb5841472 | ||
| 
						 | 
					689a17a80e | 
							
								
								
									
										2
									
								
								init.lua
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								init.lua
									
									
									
									
									
								
							@@ -49,5 +49,3 @@ end
 | 
				
			|||||||
if minetest.get_modpath("mtt") and mtt.enabled then
 | 
					if minetest.get_modpath("mtt") and mtt.enabled then
 | 
				
			||||||
	dofile(MP .. "/mtt.lua")
 | 
						dofile(MP .. "/mtt.lua")
 | 
				
			||||||
end
 | 
					end
 | 
				
			||||||
 | 
					 | 
				
			||||||
minetest.log("action", "[scifi_nodes] loaded.")
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
@@ -14,12 +14,14 @@
 | 
				
			|||||||
    },
 | 
					    },
 | 
				
			||||||
    "super_white": {
 | 
					    "super_white": {
 | 
				
			||||||
        "description": "Super Plastic",
 | 
					        "description": "Super Plastic",
 | 
				
			||||||
 | 
					        "colorable": true,
 | 
				
			||||||
        "light": 11,
 | 
					        "light": 11,
 | 
				
			||||||
        "sounds": "stone",
 | 
					        "sounds": "stone",
 | 
				
			||||||
        "texture_name": "white2"
 | 
					        "texture_name": "white2"
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    "ultra_white": {
 | 
					    "ultra_white": {
 | 
				
			||||||
        "description": "Ultra Plastic",
 | 
					        "description": "Ultra Plastic",
 | 
				
			||||||
 | 
					        "colorable": true,
 | 
				
			||||||
        "light": 14,
 | 
					        "light": 14,
 | 
				
			||||||
        "sounds": "stone",
 | 
					        "sounds": "stone",
 | 
				
			||||||
        "texture_name": "white2"
 | 
					        "texture_name": "white2"
 | 
				
			||||||
@@ -122,7 +124,8 @@
 | 
				
			|||||||
        "description": "transparent metal floormesh",
 | 
					        "description": "transparent metal floormesh",
 | 
				
			||||||
        "texture_name": "mesh",
 | 
					        "texture_name": "mesh",
 | 
				
			||||||
        "texture_modifier": "^[contrast:10:-50^[makealpha:0,0,0",
 | 
					        "texture_modifier": "^[contrast:10:-50^[makealpha:0,0,0",
 | 
				
			||||||
        "drawtype": "glasslike"
 | 
					        "drawtype": "glasslike",
 | 
				
			||||||
 | 
					        "sunlight_propagates": true
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    "pipe": {
 | 
					    "pipe": {
 | 
				
			||||||
        "description": "wall pipe"
 | 
					        "description": "wall pipe"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -520,6 +520,7 @@ for name, def in pairs(nodes) do
 | 
				
			|||||||
	local node_def = {
 | 
						local node_def = {
 | 
				
			||||||
		description = def.description,
 | 
							description = def.description,
 | 
				
			||||||
		drawtype = def.drawtype or "normal",
 | 
							drawtype = def.drawtype or "normal",
 | 
				
			||||||
 | 
							sunlight_propagates = def.sunlight_propagates,
 | 
				
			||||||
		tiles = tiles,
 | 
							tiles = tiles,
 | 
				
			||||||
		groups = {cracky=1, dig_generic = 3},
 | 
							groups = {cracky=1, dig_generic = 3},
 | 
				
			||||||
		is_ground_content = false,
 | 
							is_ground_content = false,
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user