Merge branch 'prefer-silk-touch' into commands

This commit is contained in:
Logan Darklock 2019-09-01 15:19:17 -07:00
commit c1749057d9

View File

@ -117,7 +117,7 @@ public class ToolSet {
bestSilkTouch = silkTouch;
} else if (speed == highestSpeed) {
int cost = getMaterialCost(itemStack);
if (cost < lowestCost && (silkTouch || !bestSilkTouch) ||
if ((cost < lowestCost && (silkTouch || !bestSilkTouch)) ||
(preferSilkTouch && !bestSilkTouch && silkTouch)) {
highestSpeed = speed;
best = i;