diff options
author | NotAPenguin <michiel.vandeginste@gmail.com> | 2024-05-22 19:09:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-22 19:09:28 +0200 |
commit | 5a0ef92140eea89f69c531033fd78dd3cbb48a00 (patch) | |
tree | 7f37791dfdc69060763d8a74ec7075a359bb9189 | |
parent | 5df2d9debbb2785a54e4ef63c11ddc3593d3fba5 (diff) | |
download | GT5-Unofficial-5a0ef92140eea89f69c531033fd78dd3cbb48a00.tar.gz GT5-Unofficial-5a0ef92140eea89f69c531033fd78dd3cbb48a00.tar.bz2 GT5-Unofficial-5a0ef92140eea89f69c531033fd78dd3cbb48a00.zip |
fix bismuth telluride naming (#13)
-rw-r--r-- | src/main/java/com/github/bartimaeusnek/bartworks/system/material/WerkstoffLoader.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/WerkstoffLoader.java b/src/main/java/com/github/bartimaeusnek/bartworks/system/material/WerkstoffLoader.java index 19e7437524..ebae7763c5 100644 --- a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/WerkstoffLoader.java +++ b/src/main/java/com/github/bartimaeusnek/bartworks/system/material/WerkstoffLoader.java @@ -556,7 +556,9 @@ public class WerkstoffLoader { ); public static final Werkstoff BismuthTellurite = new Werkstoff( new short[] { 32, 72, 32, 0 }, - "Bismuth Tellurite", + // Telluride is correct, tellurite is not. + // Only the display name gets renamed to avoid problems in other mods + "Bismuth Telluride", new Werkstoff.Stats().setElektrolysis(true), Werkstoff.Types.COMPOUND, new Werkstoff.GenerationFeatures().disable().onlyDust().addChemicalRecipes(), |