From cf044120cad3ff1aa2fd40b4ae8989f7e898546e Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Thu, 21 Dec 2017 19:16:36 +1000 Subject: + Added a better Ai and combat mechanics to the Staballoy Constructs. + Tried to implement new World generation for my dimension. % Small tweak to gitignore. --- src/Java/gtPlusPlus/core/util/reflect/ReflectionUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Java/gtPlusPlus/core/util/reflect') 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) { -- cgit