From 26f4a010b9caa2d892f7b7f42bd4eafb313082aa Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Sat, 15 Sep 2018 00:47:45 +1000 Subject: + Added custom doors. + Added new Rocket Fuels and various chemical compounds to produce them. + Added an ASM fix that removes Diesel and EIO/GC Rocket Fuel from GC and allows use of all 4 GT++ fuels instead. % Reworked Rocket Engine generators, to now use new fuels and produce heavy pollution. $ Fixed bug that could corrupt the Fluid Registry. --- src/Java/gtPlusPlus/core/item/base/ingots/BaseItemIngotHot.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/Java/gtPlusPlus/core/item/base') diff --git a/src/Java/gtPlusPlus/core/item/base/ingots/BaseItemIngotHot.java b/src/Java/gtPlusPlus/core/item/base/ingots/BaseItemIngotHot.java index a6206e7e08..555164229b 100644 --- a/src/Java/gtPlusPlus/core/item/base/ingots/BaseItemIngotHot.java +++ b/src/Java/gtPlusPlus/core/item/base/ingots/BaseItemIngotHot.java @@ -39,7 +39,8 @@ public class BaseItemIngotHot extends BaseItemIngot{ @Override public String getItemStackDisplayName(final ItemStack p_77653_1_) { - return ("Hot "+this.materialName+ " Ingot"); + return super.getItemStackDisplayName(p_77653_1_); + //return ("Hot "+this.materialName+ " Ingot"); } @Override -- cgit