Skip to content

Commit

Permalink
Refactors LCR Pattern to allow all coils to form multi (#2461)
Browse files Browse the repository at this point in the history
  • Loading branch information
omergunr100 authored Nov 30, 2024
1 parent 51620ce commit c8c28ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1384,7 +1384,7 @@ public static BiConsumer<ItemStack, List<Component>> createTankTooltips(String n
.where('S', Predicates.controller(blocks(definition.getBlock())))
.where('X', casing.or(abilities))
.where('P', blocks(CASING_POLYTETRAFLUOROETHYLENE_PIPE.get()))
.where('C', blocks(COIL_CUPRONICKEL.get()).setExactLimit(1)
.where('C', Predicates.heatingCoils().setExactLimit(1)
.or(abilities)
.or(casing))
.build();
Expand Down

0 comments on commit c8c28ba

Please sign in to comment.