Adjusted Terminal Packet Limits.

Fixed random errors thrown when FMP is installed.
Finished Crafting Terminal Basic Features.
This commit is contained in:
AlgorithmX2
2014-02-05 01:25:44 -06:00
parent a165d533b6
commit e79e866417
13 changed files with 544 additions and 23 deletions
+3
View File
@@ -30,6 +30,8 @@ public class AEItemDef
@SideOnly(Side.CLIENT)
public List tooltip;
public boolean isOre;
public AEItemDef copy()
{
AEItemDef t = new AEItemDef();
@@ -39,6 +41,7 @@ public class AEItemDef
t.dspDamage = dspDamage;
t.maxDamage = maxDamage;
t.tagCompound = tagCompound;
t.isOre = isOre;
return t;
}