1.6.02 (acrhive integrity fix)
This commit is contained in:
parent
012535fcd8
commit
66ed4f653c
2
README
2
README
@ -1,4 +1,4 @@
|
||||
Minecraft Land Generator version 1.6.01
|
||||
Minecraft Land Generator version 1.6.02
|
||||
|
||||
Updated December 26, 2011
|
||||
|
||||
|
@ -21,3 +21,4 @@ BB0D2DA2ADEDD6F1ADC04D60A49ED6AC=1324892569000# MLG v1.6.0 Testing 62
|
||||
6AF192F8233606270E1FFE39967E44D=1324894337000# MLG v1.6.0 Christmas 2011 Edition (Missing Source Code)
|
||||
FF376B05316EE14CC391501F00533732=1324933509000# MLG v1.6.0 Christmas 2011 Edition
|
||||
AEB596394C059751586921AB0E30FD1A=1324937756000# MLG v1.6.01
|
||||
E8F78713C050CAF5AFE80EDDB1091BE8=1324945000000# MLG v1.6.02
|
||||
|
@ -1,6 +1,6 @@
|
||||
#Minecraft Land Generator Configuration File: Version: 1.6.01
|
||||
#Minecraft Land Generator Configuration File: Version: 1.6.02
|
||||
#Authors: Corrodias, Morlok8k, pr0f1x
|
||||
#Auto-Generated: Monday, December 26, 2011 at 2:16 PM Pacific Standard Time
|
||||
#Auto-Generated: Monday, December 26, 2011 at 4:16 PM Pacific Standard Time
|
||||
|
||||
#Line to run server:
|
||||
Java=java -Djava.awt.headless=true -Djline.terminal=jline.UnsupportedTerminal -Duser.language=en -Xms1024m -Xmx1024m -Xincgc -jar minecraft_server.jar nogui
|
||||
|
Binary file not shown.
@ -52,7 +52,7 @@ import org.jnbt.Tag;
|
||||
public class Main {
|
||||
|
||||
// Version Number!
|
||||
private static final String VERSION = "1.6.01";
|
||||
private static final String VERSION = "1.6.02";
|
||||
private static final String AUTHORS = "Corrodias, Morlok8k, pr0f1x";
|
||||
|
||||
private static final String fileSeparator = System.getProperty("file.separator");
|
||||
@ -1330,7 +1330,8 @@ public class Main {
|
||||
if (tCalc < -15000L) {
|
||||
|
||||
//time is newer? (.zip file is newer than BuildID)
|
||||
err("Archive Intergrity Check Failed: .zip file is newer than BuildID");
|
||||
err("Archive Intergrity Check Failed: .zip file is newer than BuildID. Offset: "
|
||||
+ (tCalc / 1000) + "sec.");
|
||||
err("Archive Intergrity Check Failed: (MLG will still run. Just note that this may not be an official version.)");
|
||||
}
|
||||
|
||||
@ -1344,7 +1345,8 @@ public class Main {
|
||||
|
||||
} else {
|
||||
//times dont match. (.zip file is older than specified BuildID)
|
||||
err("Archive Intergrity Check Failed: .zip file is older than BuildID");
|
||||
err("Archive Intergrity Check Failed: .zip file is older than BuildID. Offset: "
|
||||
+ (tCalc / 1000) + "sec.");
|
||||
err("Archive Intergrity Check Failed: (MLG will still run. Just note that this may not be an official version.)");
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user