Skip to content

Commit

Permalink
fix hot air checking
Browse files Browse the repository at this point in the history
  • Loading branch information
friendlyhj authored and Yefancy committed May 12, 2022
1 parent 796c849 commit 9d8a519
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public HotAirProdigyCapabilityProxy(TileEntity tileEntity) {
@Override
protected List<Integer> handleRecipeInner(IO io, Recipe recipe, List<Integer> left, boolean simulate) {
IHotAir capability = getCapability();
if (capability == null || capability.getOutAirTemperature() <= left.get(0)) return left;
if (capability == null || capability.getOutAirTemperature() < left.get(0)) return left;
return null;
}

Expand Down

0 comments on commit 9d8a519

Please sign in to comment.