From b2f32b27b25d6275510905ec2c3683c4f390a95b Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Thu, 1 Sep 2016 12:21:33 +1000 Subject: + Added some better support for the 5.9 branch of Gregtech. > Added variable method classes which allow 5.7, 5.8 and 5.9 code segments to co-exist without compile or static link errors. --- src/Java/miscutil/xmod/gregtech/common/Meta_GT_Proxy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Java/miscutil/xmod/gregtech/common') diff --git a/src/Java/miscutil/xmod/gregtech/common/Meta_GT_Proxy.java b/src/Java/miscutil/xmod/gregtech/common/Meta_GT_Proxy.java index 5be3170471..8cf95102ba 100644 --- a/src/Java/miscutil/xmod/gregtech/common/Meta_GT_Proxy.java +++ b/src/Java/miscutil/xmod/gregtech/common/Meta_GT_Proxy.java @@ -415,7 +415,7 @@ public class Meta_GT_Proxy { public static boolean areWeUsingGregtech5uExperimental(){ int version = GregTech_API.VERSION; - if (version == 508){ + if (version == 508 || version == 507){ return false; } else if (version == 509){ -- cgit