1
0
mirror of https://github.com/minetest/minetest.git synced 2024-09-21 20:10:17 +02:00

Unknown nodes can be dug

This commit is contained in:
Perttu Ahola 2012-03-19 08:16:17 +02:00
parent 77d09552ae
commit d24c56fd4b

View File

@ -109,6 +109,8 @@ void ContentFeatures::reset()
*/ */
name = ""; name = "";
groups.clear(); groups.clear();
// Unknown nodes can be dug
groups["dig_immediate"] = 2;
drawtype = NDT_NORMAL; drawtype = NDT_NORMAL;
visual_scale = 1.0; visual_scale = 1.0;
for(u32 i=0; i<6; i++) for(u32 i=0; i<6; i++)