Settings changes and fix npes

This commit is contained in:
Daniel Mills
2021-07-22 21:26:01 -04:00
parent 5e0b4e1be6
commit 954f0cc26f
5 changed files with 9 additions and 5 deletions

View File

@@ -68,6 +68,11 @@ public class IrisObjectRotation {
}
public IrisObject rotateCopy(IrisObject e) {
if(e == null)
{
return null;
}
return e.rotateCopy(this);
}