Skip to content

Commit

Permalink
Waterline fixes (#3558)
Browse files Browse the repository at this point in the history
  • Loading branch information
FourIsTheNumber authored Nov 26, 2024
1 parent 6023809 commit 07dcf9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/gregtech/api/enums/SoundResource.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public enum SoundResource {
GT_MACHINES_PURIFICATION_PH_LOOP(237, GregTech.ID, "machines.PurificationPhLoop"),
GT_MACHINES_COAGULATION_LOOP(238, GregTech.ID, "machines.PurificationCoagulationLoop"),
GT_MACHINES_OZONATION_LOOP(239, GregTech.ID, "machines.PurificationOzonationLoop"),
GT_MACHINES_PURIFICATION_PLASMA_LOOP(240, "machines.PurificationPlasmaLoop"),
GT_MACHINES_PURIFICATION_PLASMA_LOOP(240, GregTech.ID, "machines.PurificationPlasmaLoop"),

GT_MACHINES_MULTI_LATHE_LOOP(241, GregTech.ID, "machines.MultiLatheLoop"),
GT_MACHINES_MULTI_AUTOCLAVE_LOOP(242, GregTech.ID, "machines.MultiAutoclaveLoop"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -416,8 +416,8 @@ public void startCycle(int cycleTime, int progressTime) {
}

public void addRecipeOutputs() {
this.addFluidOutputs(mOutputFluids);
this.addItemOutputs(mOutputItems);
if (mOutputFluids != null) this.addFluidOutputs(mOutputFluids);
if (mOutputItems != null) this.addItemOutputs(mOutputItems);
}

public void endCycle() {
Expand Down

0 comments on commit 07dcf9a

Please sign in to comment.