diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-08-06 14:49:52 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-08-06 14:49:52 +1000 |
commit | 2abcd92a33a76a43c59b795d835bbe830434e379 (patch) | |
tree | 228938fcadcb3f9bc9f6bea6da09f77fd9c76e9b /src/Java/gtPlusPlus/core | |
parent | eca14265ee564dd8ac66ec85fcc862f12dae5cc4 (diff) | |
download | GT5-Unofficial-2abcd92a33a76a43c59b795d835bbe830434e379.tar.gz GT5-Unofficial-2abcd92a33a76a43c59b795d835bbe830434e379.tar.bz2 GT5-Unofficial-2abcd92a33a76a43c59b795d835bbe830434e379.zip |
+ Added a Minecraft day tracker to the RTG.
% Greatly improved RTG tooltip.
$ Fixed RTG output getting stuck on 512v.
% Internalised a reflection function call.
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r-- | src/Java/gtPlusPlus/core/util/reflect/ReflectionUtils.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/util/reflect/ReflectionUtils.java b/src/Java/gtPlusPlus/core/util/reflect/ReflectionUtils.java index 05b85cfff6..bb1b7fb7ee 100644 --- a/src/Java/gtPlusPlus/core/util/reflect/ReflectionUtils.java +++ b/src/Java/gtPlusPlus/core/util/reflect/ReflectionUtils.java @@ -103,7 +103,7 @@ public class ReflectionUtils { * Allows to change the state of an immutable instance. Huh?!? */ public static void setFieldValue(Class clazz, String fieldName, Object newValue) throws Exception { - Field nameField = clazz.getDeclaredField(fieldName); + Field nameField = getField(clazz, fieldName); setValue(clazz, nameField, newValue); } |