1.6.3 test 3
This commit is contained in:
parent
519323ad55
commit
853a368594
2
README
2
README
@ -1,7 +1,7 @@
|
|||||||
Minecraft Land Generator version 1.6.3
|
Minecraft Land Generator version 1.6.3
|
||||||
|
|
||||||
Updated May 31, 2012
|
Updated May 31, 2012
|
||||||
(BuildID: 1338515819000)
|
(BuildID: 1338531617000)
|
||||||
|
|
||||||
Original Code by Corrodias November 2010
|
Original Code by Corrodias November 2010
|
||||||
Enhanced Code by Morlok8k Feb. 2011 to Now (or at least to May 31, 2012!)
|
Enhanced Code by Morlok8k Feb. 2011 to Now (or at least to May 31, 2012!)
|
||||||
|
@ -42,3 +42,4 @@ C05A70CD4B913AD6AE37BC7ABF0EE2CA=1337921526000# MLG v1.6.2
|
|||||||
4A493B933C3117111A49806B27F02AFD=1338085654000# MLG v1.6.2
|
4A493B933C3117111A49806B27F02AFD=1338085654000# MLG v1.6.2
|
||||||
8D7527BF8F0D350644506D3012BC321A=1338452175000# MLG v1.6.3
|
8D7527BF8F0D350644506D3012BC321A=1338452175000# MLG v1.6.3
|
||||||
DB07F7F5D4D46ED346ACE3AECBEA41E5=1338515819000# MLG v1.6.3
|
DB07F7F5D4D46ED346ACE3AECBEA41E5=1338515819000# MLG v1.6.3
|
||||||
|
1BABCC85FF9EB212B2515056BD902AC5=1338531617000# MLG v1.6.3
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#Minecraft Land Generator Configuration File: Version: 1.6.3
|
#Minecraft Land Generator Configuration File: Version: 1.6.3
|
||||||
#Authors: Corrodias, Morlok8k, pr0f1x
|
#Authors: Corrodias, Morlok8k, pr0f1x
|
||||||
#Auto-Generated: Thursday, May 31, 2012 at 6:56 PM Pacific Daylight Time
|
#Auto-Generated: Thursday, May 31, 2012 at 11:20 PM Pacific Daylight Time
|
||||||
|
|
||||||
#Line to run server:
|
#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
|
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.
@ -190,16 +190,6 @@ public class Main {
|
|||||||
// INSTRUCTIONS
|
// INSTRUCTIONS
|
||||||
// =====================================================================
|
// =====================================================================
|
||||||
|
|
||||||
if (args.length == 0) {
|
|
||||||
out("Please Enter the size of world you want. Example: X:1000 Z:1000");
|
|
||||||
outP(MLG + "X:");
|
|
||||||
xRange = MLG_input_CLI.getInt("X:");
|
|
||||||
outP(MLG + "Z:");
|
|
||||||
zRange = MLG_input_CLI.getInt("Z:");
|
|
||||||
args = new String[] { String.valueOf(xRange), String.valueOf(zRange) };
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
// check for -nowait, and remove from arguments if it exists. (we remove it for compatibility reasons with the rest of the existing code.)
|
// check for -nowait, and remove from arguments if it exists. (we remove it for compatibility reasons with the rest of the existing code.)
|
||||||
// (-nowait is the only universal switch - it can be used with anything. its basically for scripting, as it turns off the 10sec wait for human readability)
|
// (-nowait is the only universal switch - it can be used with anything. its basically for scripting, as it turns off the 10sec wait for human readability)
|
||||||
String[] newArgs = new String[args.length];
|
String[] newArgs = new String[args.length];
|
||||||
@ -211,6 +201,16 @@ public class Main {
|
|||||||
args = newArgs;
|
args = newArgs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (args.length == 0) {
|
||||||
|
out("Please Enter the size of world you want. Example: X:1000 Z:1000");
|
||||||
|
outP(MLG + "X:");
|
||||||
|
xRange = MLG_input_CLI.getInt("X:");
|
||||||
|
outP(MLG + "Z:");
|
||||||
|
zRange = MLG_input_CLI.getInt("Z:");
|
||||||
|
args = new String[] { String.valueOf(xRange), String.valueOf(zRange) };
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
if (args[0].equalsIgnoreCase("-version") || args[0].equalsIgnoreCase("-help")
|
if (args[0].equalsIgnoreCase("-version") || args[0].equalsIgnoreCase("-help")
|
||||||
|| args[0].equals("/?")) {
|
|| args[0].equals("/?")) {
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user