Fixes support for float storage in config files.

https://github.com/BentoBoxWorld/TwerkingForTrees/issues/6
This commit is contained in:
tastybento 2019-12-22 11:08:49 -08:00
parent dfd8dffcf2
commit 6b69052863
1 changed files with 9 additions and 1 deletions

View File

@ -210,7 +210,15 @@ public class YamlDatabaseHandler<T> extends AbstractDatabaseHandler<T> {
if (!(Enum.class.isAssignableFrom(propertyDescriptor.getPropertyType()) && setTo == null)) {
// Do not invoke null on Enums
try {
method.invoke(instance, setTo);
// Floats need special handling because the database returns them as doubles
Type setType = propertyDescriptor.getWriteMethod().getGenericParameterTypes()[0];
if (setType.getTypeName().equals("float")) {
double d = (double) setTo;
float f = (float)d;
method.invoke(instance, f);
} else {
method.invoke(instance, setTo);
}
} catch (Exception e) {
plugin.logError("Could not deserialize. Attempt by " + instance.getClass().getCanonicalName() + " " + method.getName() + " to set to " + setTo);
plugin.logError("Error message is: " + e.getMessage());