Search By Mod ID

This commit is contained in:
AlgorithmX2
2014-07-02 21:09:17 -05:00
parent 4a88f87e2a
commit ab68154885
4 changed files with 41 additions and 1 deletions
+9
View File
@@ -791,6 +791,15 @@ public class Platform
}
}
public static String getModId(IAEItemStack is)
{
if ( is == null )
return "** Null";
String n = ((AEItemStack) is).getModID();
return n == null ? "** Null" : n;
}
public static String getItemDisplayName(Object o)
{
if ( o == null )