Inscriber Recipe Handler, + Fixed Potential ME Chest Crash.

This commit is contained in:
AlgorithmX2
2014-03-13 13:26:55 -05:00
parent 9e14101240
commit 67be86a19a
2 changed files with 26 additions and 18 deletions
+6 -3
View File
@@ -105,10 +105,13 @@ public class Inscribe implements ICraftHandler, IWebsiteSeralizer
o += h.getName( output ) + "\n";
if ( plateB != null )
o += h.getName( plateB ) + "\n";
if ( plateA != null )
o += h.getName( plateA )+"\n";
o += h.getName( plateA );
o += h.getName(imprintable);
if ( plateB != null )
o += "\n"+h.getName( plateB );
return o;
}