diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-07-06 07:47:11 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-07-06 07:47:11 +1000 |
commit | 53621c8f3f2663442283c24974408616b1b1d91a (patch) | |
tree | 7c136de074021f503e17933d6f4b89c7db0d630f /src/Java/gtPlusPlus/core | |
parent | b8dcf8f77993de9e2d363687529f14679d733651 (diff) | |
download | GT5-Unofficial-53621c8f3f2663442283c24974408616b1b1d91a.tar.gz GT5-Unofficial-53621c8f3f2663442283c24974408616b1b1d91a.tar.bz2 GT5-Unofficial-53621c8f3f2663442283c24974408616b1b1d91a.zip |
^ Version Bump for Local build.
$ Fixed Wireless Chargers not properly charging in Long-Range mode. Fixes #291 & Fixes #326.
$ Fixed Wireless Chargers not properly filling items up with charge, due to the difference being smaller than the input voltage.
% Changed Wrought Iron Frame to Iron Frame in the Mining Explosives recipe.
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r-- | src/Java/gtPlusPlus/core/lib/CORE.java | 2 | ||||
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_General.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/core/lib/CORE.java b/src/Java/gtPlusPlus/core/lib/CORE.java index f83e8c4d7d..0c16f31c10 100644 --- a/src/Java/gtPlusPlus/core/lib/CORE.java +++ b/src/Java/gtPlusPlus/core/lib/CORE.java @@ -51,7 +51,7 @@ public class CORE { public static final String name = "GT++"; public static final String MODID = "miscutils"; - public static final String VERSION = "1.7.02.00-fresh"; + public static final String VERSION = "1.7.02.02-fresh"; 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(); diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java index 9a4367396b..3dca793fa2 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java @@ -157,7 +157,7 @@ public class RECIPES_General { Logger.RECIPE("[Inspection] Explosives"); if (RecipeUtils.recipeBuilder( CI.explosiveITNT, CI.explosiveTNT, CI.explosiveITNT, - CI.explosiveTNT, "frameGtWroughtIron", CI.explosiveTNT, + CI.explosiveTNT, "frameGtIron", CI.explosiveTNT, "dustSulfur", CI.explosiveTNT, "dustSulfur", ItemUtils.getSimpleStack(ModBlocks.blockMiningExplosive, 3))){ Logger.INFO("Added a recipe for Mining Explosives."); |