If we can't find something to convert, return the original.

This commit is contained in:
libraryaddict
2022-01-30 12:35:12 +13:00
parent a53c8ffb79
commit ebd515e7df
3 changed files with 4 additions and 2 deletions

View File

@@ -315,7 +315,7 @@ public class ReflectionManager implements ReflectionManagerAbstract {
return Optional.of(obj);
}
return Optional.empty();
return Optional.of(val);
}
public Vector3f convertVec3(Object object) {