mirror of
https://github.com/songoda/EpicHoppers.git
synced 2024-11-26 12:16:18 +01:00
More detailed comments/TODOs and code cleanup
This commit is contained in:
parent
df40a6323e
commit
124a796546
@ -47,6 +47,8 @@ public class ModuleAutoCrafting extends Module {
|
||||
|
||||
// jam check: is this hopper gummed up?
|
||||
if (crafterEjection) {
|
||||
// TODO: Recode. Why specifically eject ingredients (allMaterials).
|
||||
// And why not eject when we checked crafting is possible
|
||||
final List<Material> allMaterials = getRecipes(toCraft).getAllMaterials();
|
||||
if (Stream.of(hopperCache.cachedInventory)
|
||||
.allMatch(item -> item != null && allMaterials.stream().anyMatch(mat -> mat == item.getType()))) {
|
||||
@ -105,7 +107,7 @@ public class ModuleAutoCrafting extends Module {
|
||||
}
|
||||
}
|
||||
|
||||
// Not enough items for this recipe
|
||||
// Not enough ingredients for this recipe
|
||||
if (amount != 0) continue;
|
||||
|
||||
for (Map.Entry<Integer, Integer> entry : slotsToAlter.entrySet()) {
|
||||
|
Loading…
Reference in New Issue
Block a user