aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/registration
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2019-03-08 03:14:13 +0000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2019-03-08 03:14:13 +0000
commit064c0dc0cfab1cc677dfffc4b3b56642017e412b (patch)
tree4ca26291abe64632a63bc0d72a510079a1766d7f /src/Java/gtPlusPlus/xmod/gregtech/registration
parent5ec18de508e12da48c68ef679f6b8646f12cb0c2 (diff)
downloadGT5-Unofficial-064c0dc0cfab1cc677dfffc4b3b56642017e412b.tar.gz
GT5-Unofficial-064c0dc0cfab1cc677dfffc4b3b56642017e412b.tar.bz2
GT5-Unofficial-064c0dc0cfab1cc677dfffc4b3b56642017e412b.zip
+ Added some AgriChem. (You can now use Raw waste as a fuel source)
+ Added OreDict names to vanilla items, as was done in Forge 1.8.9. + Added functions to allow other mods to add Semifluid Fuels. + Added functions to handle String data into StringUtils.java. % Renamed getItemStack -> getItemStackFromFQRN. $ Fixed handling of custom cells for fluids using '.' within their names. $ Fixed HF exploit.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/registration')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialMassFabricator.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialMassFabricator.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialMassFabricator.java
index 8064c68559..6362b07b93 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialMassFabricator.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechIndustrialMassFabricator.java
@@ -221,10 +221,10 @@ public class GregtechIndustrialMassFabricator {
public static ItemStack getScrapPile() {
- return ItemUtils.getSimpleStack(ItemUtils.getItem("IC2:itemScrap"));
+ return ItemUtils.getSimpleStack(ItemUtils.getItemFromFQRN("IC2:itemScrap"));
}
public static ItemStack getScrapBox() {
- return ItemUtils.getSimpleStack(ItemUtils.getItem("IC2:itemScrapbox"));
+ return ItemUtils.getSimpleStack(ItemUtils.getItemFromFQRN("IC2:itemScrapbox"));
}
} \ No newline at end of file