diff options
| author | Jeija <norrepli@gmail.com> | 2012-07-19 13:38:59 +0200 | 
|---|---|---|
| committer | Jeija <norrepli@gmail.com> | 2012-07-19 13:38:59 +0200 | 
| commit | 02d4e05d3e507e260e87b39971268b88210aa3fc (patch) | |
| tree | 520422f36b781964e14573bb2729dd55679eb00f /mesecons_solarpanel | |
| parent | 64a452da244877496bc18378cfcb35f76d950feb (diff) | |
Make solar panels diggable (instead of pull request)
Diffstat (limited to 'mesecons_solarpanel')
| -rw-r--r-- | mesecons_solarpanel/init.lua | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/mesecons_solarpanel/init.lua b/mesecons_solarpanel/init.lua index e555c9c..6665d89 100644 --- a/mesecons_solarpanel/init.lua +++ b/mesecons_solarpanel/init.lua @@ -9,9 +9,10 @@ minetest.register_node("mesecons_solarpanel:solar_panel", {  	is_ground_content = true,  	selection_box = {  		type = "fixed", +		fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},  	},  	furnace_burntime = 5, -	groups = {snappy=2}, +	groups = {dig_immediate=3},      	description="Solar Panel",  }) | 
