1
0
mirror of https://github.com/moparisthebest/minetest synced 2024-08-13 16:53:49 -04:00

dig_immediate=3 instead of 1 means 0 seconds

This commit is contained in:
Perttu Ahola 2012-03-10 01:48:15 +02:00
parent 1ae9e0afa1
commit 06d2bc7fbd

View File

@ -75,12 +75,12 @@ DigParams getDigParams(const ItemGroupList &groups,
//infostream<<"getDigParams"<<std::endl;
/* Check group dig_immediate */
switch(itemgroup_get(groups, "dig_immediate")){
case 1:
//infostream<<"dig_immediate=1"<<std::endl;
return DigParams(true, 0.0, 0);
case 2:
//infostream<<"dig_immediate=2"<<std::endl;
return DigParams(true, 1.0, 0);
case 3:
//infostream<<"dig_immediate=3"<<std::endl;
return DigParams(true, 0.0, 0);
default:
break;
}