mirror of
				https://github.com/luanti-org/minetest_game.git
				synced 2025-11-04 09:15:29 +01:00 
			
		
		
		
	Merge pull request #19 from PilzAdam/slabs
Fix slab -> full block transformation
This commit is contained in:
		@@ -71,13 +71,10 @@ function stairs.register_slab(subname, recipeitem, groups, images, description)
 | 
			
		||||
			local p0 = pointed_thing.under
 | 
			
		||||
			local p1 = pointed_thing.above
 | 
			
		||||
			local n0 = minetest.env:get_node(p0)
 | 
			
		||||
			local n1 = minetest.env:get_node(p1)
 | 
			
		||||
			if n0.name == "stairs:slab_" .. subname then
 | 
			
		||||
			if n0.name == "stairs:slab_" .. subname and
 | 
			
		||||
					p0.y+1 == p1.y then
 | 
			
		||||
				slabpos = p0
 | 
			
		||||
				slabnode = n0
 | 
			
		||||
			elseif n1.name == "stairs:slab_" .. subname then
 | 
			
		||||
				slabpos = p1
 | 
			
		||||
				slabnode = n1
 | 
			
		||||
			end
 | 
			
		||||
			if slabpos then
 | 
			
		||||
				-- Remove the slab at slabpos
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user