Skip to content
This repository was archived by the owner on Mar 21, 2026. It is now read-only.

Commit 3e59fbe

Browse files
committed
fix: request ingredient network grouping only allowing a single entry to exist
1 parent e95dff9 commit 3e59fbe

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

forge/src/main/java/ru/zznty/create_factory_logistics/mixin/logistics/panel/FactoryPanelRequestMixin.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,10 @@ private void tickRequests(Operation<Void> original) {
256256
Multimap<PackagerBlockEntity, GenericRequest> request = GenericLogisticsManager.findPackagersForRequest(
257257
entry.getKey(), order, null, requestContext.recipeAddress());
258258

259-
requests.put(requestContext, request);
259+
requests.merge(requestContext, request, (a, b) -> {
260+
a.putAll(b);
261+
return a;
262+
});
260263
}
261264
}
262265

0 commit comments

Comments
 (0)