Skip to content

Commit

Permalink
Allow toolcaps to override the built-in times for dig_immediate
Browse files Browse the repository at this point in the history
  • Loading branch information
sfan5 committed Jul 31, 2019
1 parent 245e628 commit 3296952
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions src/tool.cpp
Expand Up @@ -172,14 +172,16 @@ void ToolCapabilities::deserializeJson(std::istream &is)
DigParams getDigParams(const ItemGroupList &groups,
const ToolCapabilities *tp)
{
// Group dig_immediate has fixed time and no wear
switch (itemgroup_get(groups, "dig_immediate")) {
case 2:
return DigParams(true, 0.5, 0, "dig_immediate");
case 3:
return DigParams(true, 0, 0, "dig_immediate");
default:
break;
// Group dig_immediate defaults to fixed time and no wear
if (tp->groupcaps.find("dig_immediate") == tp->groupcaps.cend()) {
switch (itemgroup_get(groups, "dig_immediate")) {
case 2:
return DigParams(true, 0.5, 0, "dig_immediate");
case 3:
return DigParams(true, 0, 0, "dig_immediate");
default:
break;
}
}

// Values to be returned (with a bit of conversion)
Expand Down

0 comments on commit 3296952

Please sign in to comment.