mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-10-31 15:35:21 +01:00 
			
		
		
		
	Assume a selection box for fences
Similar to assuming a selection box for the nodebox drawtype, minetest.register_item() now assumes a selection box for the fencelike drawtype.
This commit is contained in:
		| @@ -106,6 +106,11 @@ function minetest.register_item(name, itemdef) | ||||
| 		-- Use the nodebox as selection box if it's not set manually | ||||
| 		if itemdef.drawtype == "nodebox" and not itemdef.selection_box then | ||||
| 			itemdef.selection_box = itemdef.node_box | ||||
| 		elseif itemdef.drawtype == "fencelike" and not itemdef.selection_box then | ||||
| 			itemdef.selection_box = { | ||||
| 				type = "fixed", | ||||
| 				fixed = {-1/8, -1/2, -1/8, 1/8, 1/2, 1/8}, | ||||
| 			} | ||||
| 		end | ||||
| 		setmetatable(itemdef, {__index = minetest.nodedef_default}) | ||||
| 		minetest.registered_nodes[itemdef.name] = itemdef | ||||
|   | ||||
		Reference in New Issue
	
	Block a user