aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/item/base
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-10-10 23:17:59 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-10-10 23:17:59 +1000
commitb1aa7032fe9e6bfedccf1bb08952c68100002489 (patch)
tree25b82e668a9ed1825fa3d021d0a80959ccc31639 /src/Java/gtPlusPlus/core/item/base
parent26e10439a576e08bc3261a6d7c6c00c6cad7b761 (diff)
downloadGT5-Unofficial-b1aa7032fe9e6bfedccf1bb08952c68100002489.tar.gz
GT5-Unofficial-b1aa7032fe9e6bfedccf1bb08952c68100002489.tar.bz2
GT5-Unofficial-b1aa7032fe9e6bfedccf1bb08952c68100002489.zip
+ Added Blueprints - These are capable of storing a crafting recipe in it, to be used with the workbench.
% More Internal work on the Workbench and it's handling of shit. + Added an interface for blueprints and other shit to utilize.
Diffstat (limited to 'src/Java/gtPlusPlus/core/item/base')
-rw-r--r--src/Java/gtPlusPlus/core/item/base/BaseItemGeneric.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/core/item/base/BaseItemGeneric.java b/src/Java/gtPlusPlus/core/item/base/BaseItemGeneric.java
index a6cc29497e..431f93b3e6 100644
--- a/src/Java/gtPlusPlus/core/item/base/BaseItemGeneric.java
+++ b/src/Java/gtPlusPlus/core/item/base/BaseItemGeneric.java
@@ -8,7 +8,6 @@ import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
-import net.minecraft.util.EnumChatFormatting;
public class BaseItemGeneric extends Item
{
@@ -24,7 +23,6 @@ public class BaseItemGeneric extends Item
@SuppressWarnings({ "unchecked", "rawtypes" })
@Override
public void addInformation(ItemStack stack, EntityPlayer aPlayer, List list, boolean bool) {
- list.add(EnumChatFormatting.GOLD+"");
super.addInformation(stack, aPlayer, list, bool);
}
} \ No newline at end of file