Skip to content

Commit 13c0933

Browse files
committed
Merge remote-tracking branch 'origin/master-1.20-lts' into master-1.21-lts
2 parents 201ad07 + f599370 commit 13c0933

5 files changed

Lines changed: 28 additions & 3 deletions

File tree

CHANGELOG-1.19.2.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
# Changelog for Minecraft 1.19.2
22
All notable changes to this project will be documented in this file.
33

4+
<a name="1.19.2-1.6.17"></a>
5+
## [1.19.2-1.6.17](/compare/1.19.2-1.6.16...1.19.2-1.6.17) - 2026-03-10 14:22:24
6+
7+
8+
### Fixed
9+
* Fix flat plans not showing dependencies anymore
10+
411
<a name="1.19.2-1.6.16"></a>
5-
## [1.19.2-1.6.16](/compare/1.19.2-1.6.15...1.19.2-1.6.16) - 2026-02-17 11:41:13
12+
## [1.19.2-1.6.16](/compare/1.19.2-1.6.15...1.19.2-1.6.16) - 2026-02-17 11:41:13 +0100
613

714

815
### Added

CHANGELOG-1.20.1.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
# Changelog for Minecraft 1.20.1
22
All notable changes to this project will be documented in this file.
33

4+
<a name="1.20.1-1.6.20"></a>
5+
## [1.20.1-1.6.20](/compare/1.20.1-1.6.19...1.20.1-1.6.20) - 2026-03-10 14:23:33
6+
7+
8+
### Fixed
9+
* Fix flat plans not showing dependencies anymore
10+
411
<a name="1.20.1-1.6.19"></a>
5-
## [1.20.1-1.6.19](/compare/1.20.1-1.6.18...1.20.1-1.6.19) - 2026-03-08 07:41:08
12+
## [1.20.1-1.6.19](/compare/1.20.1-1.6.18...1.20.1-1.6.19) - 2026-03-08 07:41:08 +0100
613

714

815
### Fixed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
As always, don't forget to backup your world before updating!
2+
Requires CyclopsCore version 1.19.4 or higher.
3+
4+
Fixes:
5+
* Fix flat plans not showing dependencies anymore
6+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
As always, don't forget to backup your world before updating!
2+
Requires CyclopsCore version 1.19.4 or higher.
3+
4+
Fixes:
5+
* Fix flat plans not showing dependencies anymore

src/main/java/org/cyclops/integratedterminals/api/terminalstorage/crafting/TerminalCraftingPlanStatic.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ public Collection<TerminalCraftingPlanFlatStatic.Entry> getEntries() {
244244

245245
protected static <I> void groupDependenciesByPrototype(IndexedEntries indexedEntries, Set<I> handledPlans, ITerminalCraftingPlan<I> plan) {
246246
// Since jobs can have multiple dependents due to job splitting, we only consider each job once during flattening.
247-
if (handledPlans.contains(plan.getId())) {
247+
if ((!(plan.getId() instanceof Integer id) || id > 0) && handledPlans.contains(plan.getId())) {
248248
return;
249249
}
250250
handledPlans.add(plan.getId());

0 commit comments

Comments
 (0)