diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2017-12-21 19:16:36 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-12-21 19:16:36 +1000 |
commit | cf044120cad3ff1aa2fd40b4ae8989f7e898546e (patch) | |
tree | ef065acc1fe184adc512676f44f34a7f3b8626a2 /src/Java/gtPlusPlus/core/util | |
parent | ecc60485f31011bf9cc6a02edb985fb683793bb7 (diff) | |
download | GT5-Unofficial-cf044120cad3ff1aa2fd40b4ae8989f7e898546e.tar.gz GT5-Unofficial-cf044120cad3ff1aa2fd40b4ae8989f7e898546e.tar.bz2 GT5-Unofficial-cf044120cad3ff1aa2fd40b4ae8989f7e898546e.zip |
+ Added a better Ai and combat mechanics to the Staballoy Constructs.
+ Tried to implement new World generation for my dimension.
% Small tweak to gitignore.
Diffstat (limited to 'src/Java/gtPlusPlus/core/util')
-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 bc92328595..047f941aef 100644 --- a/src/Java/gtPlusPlus/core/util/reflect/ReflectionUtils.java +++ b/src/Java/gtPlusPlus/core/util/reflect/ReflectionUtils.java @@ -14,7 +14,7 @@ import net.minecraft.client.Minecraft; public class ReflectionUtils { - public static Field getField(final Class<?> clazz, final String fieldName) throws NoSuchFieldException { + public static Field getField(final Class clazz, final String fieldName) throws NoSuchFieldException { try { return clazz.getDeclaredField(fieldName); } catch (final NoSuchFieldException e) { |