Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Allow toolcaps to override the built-in times for dig_immediate
- Loading branch information
Showing
with
10 additions
and
8 deletions.
-
+10
−8
src/tool.cpp
|
@@ -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) |
|
|