From 5a0ef92140eea89f69c531033fd78dd3cbb48a00 Mon Sep 17 00:00:00 2001 From: NotAPenguin Date: Wed, 22 May 2024 19:09:28 +0200 Subject: fix bismuth telluride naming (#13) --- .../bartimaeusnek/bartworks/system/material/WerkstoffLoader.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/main/java/com') 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(), -- cgit