Skip to content

Commit

Permalink
removed cover output part of coke oven structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Apr 30, 2024
1 parent 44e4b04 commit 2406b2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/src/main/java/trinsdar/gt4r/data/Structures.java
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ public static void initPatterns() {

public static void init() {
COKE_OVEN.setStructure(BlockEntityCokeOven.class, b -> b.part("main")
.of("CCC", "CCC", "CCC").of("C~C", "C-C", "CCC").of("ccc", "ccc", "ccc").build()
.at('C', BRICK).at('c', BRICK.cover(Direction.DOWN, Data.COVEROUTPUT))
.of("CCC", "CCC", "CCC").of("C~C", "C-C", "CCC").of(0).build()
.at('C', BRICK)
.offset(1, 1, 0).build()
);
PYROLYSIS_OVEN.setStructure(BlockEntityPyrolysisOven.class, b -> b.part("main")
Expand Down

0 comments on commit 2406b2b

Please sign in to comment.