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

Data fixes for tec plates

This commit is contained in:
cyberpwn
2021-09-25 18:25:00 -04:00
parent b6d9eb3dcc
commit a80031c3c5
26 changed files with 184 additions and 71 deletions

View File

@@ -524,7 +524,15 @@ public class MantleWriter implements IObjectPlacer {
}
public <T> void set(IrisPosition pos, T data) {
setData(pos.getX(), pos.getY(), pos.getZ(), data);
try
{
setData(pos.getX(), pos.getY(), pos.getZ(), data);
}
catch(Throwable e)
{
Iris.error("No set? " + data.toString() + " for " + pos.toString());
}
}
public <T> void set(List<IrisPosition> positions, T data) {