diff options
author | NotAPenguin <michiel.vandeginste@gmail.com> | 2024-09-03 13:48:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-03 13:48:21 +0200 |
commit | f298ed1f2d13cd7b6d9495d4724a4e442e763e8b (patch) | |
tree | f4d1db4e9034bf73408f124b1855df9ecf5c88af /src/main/java/gregtech/loaders | |
parent | f0256ca0b98127b0760978836f6e668ff2a47909 (diff) | |
download | GT5-Unofficial-f298ed1f2d13cd7b6d9495d4724a4e442e763e8b.tar.gz GT5-Unofficial-f298ed1f2d13cd7b6d9495d4724a4e442e763e8b.tar.bz2 GT5-Unofficial-f298ed1f2d13cd7b6d9495d4724a4e442e763e8b.zip |
fix string references to classes in callConstructor calls (#3021)
Diffstat (limited to 'src/main/java/gregtech/loaders')
-rw-r--r-- | src/main/java/gregtech/loaders/preload/LoaderGTBlockFluid.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/loaders/preload/LoaderGTBlockFluid.java b/src/main/java/gregtech/loaders/preload/LoaderGTBlockFluid.java index 7bf36c1e33..adcd0f33bc 100644 --- a/src/main/java/gregtech/loaders/preload/LoaderGTBlockFluid.java +++ b/src/main/java/gregtech/loaders/preload/LoaderGTBlockFluid.java @@ -175,7 +175,7 @@ public class LoaderGTBlockFluid implements Runnable { ItemList.VOLUMETRIC_FLASK.set(new ItemVolumetricFlask("Volumetric_Flask", "Volumetric flask", 1000)); Item tItem = (Item) GTUtility.callConstructor( - "gregtech.common.items.GT_SensorCard_Item", + "gregtech.common.items.ItemSensorCard", 0, null, false, @@ -185,7 +185,7 @@ public class LoaderGTBlockFluid implements Runnable { : tItem); Item advSensorCard = (Item) GTUtility - .callConstructor("gregtech.common.items.GT_AdvancedSensorCard_Item", 0, null, false); + .callConstructor("gregtech.common.items.ItemAdvancedSensorCard", 0, null, false); ItemList.NC_AdvancedSensorCard.set( advSensorCard == null ? new GTGenericItem( |