9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-29 20:19:06 +00:00

Oh the commands

This commit is contained in:
Daniel Mills
2020-08-01 04:36:57 -04:00
parent e5cdd9a7f1
commit 3b76bb64a9
34 changed files with 1427 additions and 792 deletions

View File

@@ -25,6 +25,15 @@ public class BlockDataTools
if(bdx == null)
{
Iris.warn("Unknown Block Data '" + bd + "'");
try
{
throw new RuntimeException("Unknown Block Data");
}
catch(Throwable e)
{
e.printStackTrace();
}
nulls.add(bd);
return bdx;
}
@@ -33,12 +42,13 @@ public class BlockDataTools
return bdx;
}
catch(Throwable e)
{
Iris.warn("Unknown Block Data '" + bd + "'");
e.printStackTrace();
}
return null;
}