File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1+ # v2.3.2
2+ - Fix BlastTemperature of Vacuum Freezer Extended Recipes.
3+
4+ * * *
5+
16# v2.3.1
27- Hotfix a mistake when splitting into INBs [ #296 ] ( https://github.com/GTModpackTeam/GTExpert-Core/pull/296 )
38
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ private static void vacuumFreezerExtended(@NotNull Material material) {
177177 (int ) (material .getMass () * 0.5 );
178178
179179 // Check if the material has a blast temperature above 5000K
180- if (property .getBlastTemperature () > 5000 ) {
180+ if (property .getBlastTemperature () >= 5000 ) {
181181 if (material .hasFlag (GENERATE_PLATE )) {
182182 RecipeMaps .VACUUM_RECIPES .recipeBuilder ()
183183 .notConsumable (MetaItems .SHAPE_MOLD_PLATE )
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ private static void materials() {
5454 List <Material > materials = new ArrayList <>(GregTechAPI .materialManager .getRegisteredMaterials ());
5555 materials .forEach (CEUOverrideRecipe ::vacuumFreezerExtended );
5656
57- // Remove Gem (temp fix)
57+ // Remove Gem
5858 materials .forEach (CEUOverrideRecipe ::removeGem );
5959
6060 // Iron Nugget
@@ -375,7 +375,7 @@ private static void vacuumFreezerExtended(@NotNull Material material) {
375375 (int ) material .getMass () * 3 ;
376376
377377 // Check if the material has a blast temperature above 5000K
378- if (property .getBlastTemperature () > 5000 ) {
378+ if (property .getBlastTemperature () >= 5000 ) {
379379 if (material .hasFlag (GENERATE_PLATE )) {
380380 RecipeMaps .VACUUM_RECIPES .recipeBuilder ()
381381 .notConsumable (MetaItems .SHAPE_MOLD_PLATE )
You can’t perform that action at this time.
0 commit comments