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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user