aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2018-02-18 23:00:01 +1000
committerJordan Byrne <draknyte1@hotmail.com>2018-02-18 23:00:01 +1000
commit548282e29dd4cc6fbf9071b509ef35cee5c99a7b (patch)
treedbb04f10254cd0222119b526d39d078a4284534b /src/Java/gtPlusPlus/core
parentc13730a12f1e47bfc12ad8cf16043ef2093146e2 (diff)
downloadGT5-Unofficial-548282e29dd4cc6fbf9071b509ef35cee5c99a7b.tar.gz
GT5-Unofficial-548282e29dd4cc6fbf9071b509ef35cee5c99a7b.tar.bz2
GT5-Unofficial-548282e29dd4cc6fbf9071b509ef35cee5c99a7b.zip
^ Version Bump to PreRelease5.
% Updated CommandUtils.java. % Made AnimalFarm abstract, as it's currently an empty class. $ Fixed Recycling recipes not generating properly for all material components. They now get queued and run at the end of postInit().
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r--src/Java/gtPlusPlus/core/commands/CommandUtils.java2
-rw-r--r--src/Java/gtPlusPlus/core/lib/CORE.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/core/commands/CommandUtils.java b/src/Java/gtPlusPlus/core/commands/CommandUtils.java
index 4e74d53464..175925d40c 100644
--- a/src/Java/gtPlusPlus/core/commands/CommandUtils.java
+++ b/src/Java/gtPlusPlus/core/commands/CommandUtils.java
@@ -5,7 +5,7 @@ import net.minecraft.entity.player.EntityPlayer;
public class CommandUtils {
- public EntityPlayer getPlayer(final ICommandSender icommandsender){
+ public static EntityPlayer getPlayer(final ICommandSender icommandsender){
EntityPlayer player;
if(icommandsender instanceof EntityPlayer){
diff --git a/src/Java/gtPlusPlus/core/lib/CORE.java b/src/Java/gtPlusPlus/core/lib/CORE.java
index c43c8dd3e7..4cff84d646 100644
--- a/src/Java/gtPlusPlus/core/lib/CORE.java
+++ b/src/Java/gtPlusPlus/core/lib/CORE.java
@@ -47,7 +47,7 @@ public class CORE {
public static final String name = "GT++";
public static final String MODID = "miscutils";
- public static final String VERSION = "1.7.0-prerelease-4";
+ public static final String VERSION = "1.7.0-prerelease-5";
public static String MASTER_VERSION = NetworkUtils.getContentFromURL("https://raw.githubusercontent.com/draknyte1/GTplusplus/master/Recommended.txt").toLowerCase();
public static String USER_COUNTRY = GeoUtils.determineUsersCountry();
public static boolean isModUpToDate = Utils.isModUpToDate();