mirror of
				https://github.com/minetest-mods/technic.git
				synced 2025-10-31 15:45:28 +01:00 
			
		
		
		
	blast-resistant concrete stairs/slopes/et. al (#455)
if moreblocks is installed.
This commit is contained in:
		
				
					committed by
					
						 Nathanaël Courant
						Nathanaël Courant
					
				
			
			
				
	
			
			
			
						parent
						
							8409be32fc
						
					
				
				
					commit
					2b2411d1ee
				
			| @@ -61,6 +61,20 @@ minetest.register_node(":technic:blast_resistant_concrete", { | ||||
| 	end, | ||||
| }) | ||||
|  | ||||
| if minetest.get_modpath("moreblocks") then | ||||
| 	stairsplus:register_all("technic","blast_resistant_concrete","technic:blast_resistant_concrete",{ | ||||
| 		description = "Blast-resistant Concrete", | ||||
| 		tiles = {"technic_blast_resistant_concrete_block.png",}, | ||||
| 		groups = {cracky=1, level=3, concrete=1}, | ||||
| 		sounds = default.node_sound_stone_defaults(), | ||||
| 		on_blast = function(pos, intensity) | ||||
| 			if intensity > 1 then | ||||
| 				minetest.remove_node(pos) | ||||
| 				minetest.add_item(pos, "technic:blast_resistant_concrete") | ||||
| 			end | ||||
| 		end, | ||||
| 	}) | ||||
| end | ||||
|  | ||||
| local box_platform = {-0.5,  0.3,  -0.5,  0.5,  0.5, 0.5} | ||||
| local box_post     = {-0.15, -0.5, -0.15, 0.15, 0.5, 0.15} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user