Skip to content

Commit d0a6d11

Browse files
authored
(Docs) Fix GTValues.VA being used as a function in material property modification, add reference to coil temps in Material Properties (#4338)
1 parent 7c23a95 commit d0a6d11

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/content/Modpacks/Materials-and-Elements/Material-Properties.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Properties can be applied to a material to decide how they behave. An example of
2929

3030
## `Blast Furnace Properties`
3131
- `.blastTemp()` is meant to be paired together with `.ingot()`. Will generate a EBF recipe (and an ABS recipe) based on the parameters you give it:
32-
1. `int temperature` -> dictates what coil tier it will require (check the coil tooltips for their max temperature).
32+
1. `int temperature` -> dictates what coil tier it will require (check the coil tooltips for their max temperature, or visit [Standard Coils](../Other-Topics/Custom-Coils.md#standard-coils)).
3333
If the temperature is below 1000, it will also generate a PBF recipe.
3434
If temperature is above 1750, a hot ingot will be generated, this requiring a Vacuum Freezer.
3535
2. (optional) `string gasTier` -> can be `null` for none, `'low'` for nitrogen, `'mid'` for helium, `'high'` for argon, `'higher'` for neon or `'highest'` for krypton.

docs/content/Modpacks/Materials-and-Elements/Modifying-Existing-Materials.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ All periodic table elements are present in GT, but some of them don't have any p
2222
GTMaterials.Selenium.setProperty(PropertyKey.DUST, new $DustProperty());
2323

2424
// Blast Property
25-
GTMaterials.Zirconium.setProperty(PropertyKey.BLAST, new $BlastProperty(8000, 'higher', GTValues.VA(GTValues.MV), 8000));
25+
GTMaterials.Zirconium.setProperty(PropertyKey.BLAST, new $BlastProperty(8000, 'higher', GTValues.VA[GTValues.MV], 8000));
2626

2727
});
2828
```
@@ -81,4 +81,4 @@ Editing the color of an existing material:
8181
})
8282
```
8383
84-
1. Most methods in the [``Material`` class](https://github.com/GregTechCEu/GregTech-Modern/blob/1.20.1/src/main/java/com/gregtechceu/gtceu/api/data/chemical/material/Material.java) can be used in the ``materialModification`` event
84+
1. Most methods in the [``Material`` class](https://github.com/GregTechCEu/GregTech-Modern/blob/1.20.1/src/main/java/com/gregtechceu/gtceu/api/data/chemical/material/Material.java) can be used in the ``materialModification`` event

0 commit comments

Comments
 (0)