diff options
author | Alkalus <Draknyte1@hotmail.com> | 2020-03-28 20:32:11 +0000 |
---|---|---|
committer | Alkalus <Draknyte1@hotmail.com> | 2020-03-28 20:32:11 +0000 |
commit | a3c8210a4318f34cbe46306cb1c829f41650515d (patch) | |
tree | c1415ec21d67729464f6597fdf0d1a875edc13ac /src/Java/gtPlusPlus/core/util | |
parent | 254f1af84f1a673523aa936acada7d5b1c1a91c3 (diff) | |
download | GT5-Unofficial-a3c8210a4318f34cbe46306cb1c829f41650515d.tar.gz GT5-Unofficial-a3c8210a4318f34cbe46306cb1c829f41650515d.tar.bz2 GT5-Unofficial-a3c8210a4318f34cbe46306cb1c829f41650515d.zip |
+ Added Materials for the new LNR fuels.
+ Added a new casing block class for special handled multiblock casings.
+ Added locale for Naq Fuel Cells.
$ Reworked TAE. There are now 19 texture slots free out of the 64 total.
$ Fixed a minor bug in the update checker.
Diffstat (limited to 'src/Java/gtPlusPlus/core/util')
-rw-r--r-- | src/Java/gtPlusPlus/core/util/sys/NetworkUtils.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/util/sys/NetworkUtils.java b/src/Java/gtPlusPlus/core/util/sys/NetworkUtils.java index f1417e8a2d..b883391a86 100644 --- a/src/Java/gtPlusPlus/core/util/sys/NetworkUtils.java +++ b/src/Java/gtPlusPlus/core/util/sys/NetworkUtils.java @@ -121,7 +121,7 @@ public class NetworkUtils { private static boolean checkAddressWithTimeout(String URL, int timeout) { try { - InetAddress.getByName(URL).isReachable(3000); //Replace with your name + InetAddress.getByName(URL).isReachable(timeout); //Replace with your name return true; } catch (Exception e) { return false; |