dig_immediate=3 instead of 1 means 0 seconds

master
Perttu Ahola 2012-03-10 01:48:15 +02:00
parent 1ae9e0afa1
commit 06d2bc7fbd
1 changed files with 3 additions and 3 deletions

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;
}