1.6.0 Testing 62
This commit is contained in:
parent
12d7fbb3aa
commit
35634db86a
2
README
2
README
@ -1,4 +1,4 @@
|
|||||||
Minecraft Land Generator version 1.6.0 Testing 60
|
Minecraft Land Generator version 1.6.0 Testing 62
|
||||||
|
|
||||||
Updated December 26, 2011
|
Updated December 26, 2011
|
||||||
|
|
||||||
|
@ -15,3 +15,4 @@ D8C8AAD349579A6ED6F7BED144BC31F0=1324884237000# MLG v1.6.0 Testing 55
|
|||||||
DB54C9BB6333F0E45A6B0BE8016B8004=1324887349000# MLG v1.6.0 Testing 57
|
DB54C9BB6333F0E45A6B0BE8016B8004=1324887349000# MLG v1.6.0 Testing 57
|
||||||
490E29848ED7D9B1A6902F1F39DD28D8=1324888150000# MLG v1.6.0 Testing 58
|
490E29848ED7D9B1A6902F1F39DD28D8=1324888150000# MLG v1.6.0 Testing 58
|
||||||
4F381449BF6A062167E0E023B733AC4E=1324891773000# MLG v1.6.0 Testing 60
|
4F381449BF6A062167E0E023B733AC4E=1324891773000# MLG v1.6.0 Testing 60
|
||||||
|
BB0D2DA2ADEDD6F1ADC04D60A49ED6AC=1324892569000# MLG v1.6.0 Testing 62
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#Minecraft Land Generator Configuration File: Version: 1.6.0 Testing 60
|
#Minecraft Land Generator Configuration File: Version: 1.6.0 Testing 62
|
||||||
#Authors: Corrodias, Morlok8k, pr0f1x
|
#Authors: Corrodias, Morlok8k, pr0f1x
|
||||||
#Auto-Generated: Monday, December 26, 2011 at 1:29 AM Pacific Standard Time
|
#Auto-Generated: Monday, December 26, 2011 at 1:43 AM Pacific Standard 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.
@ -52,7 +52,7 @@ import org.jnbt.Tag;
|
|||||||
public class Main {
|
public class Main {
|
||||||
|
|
||||||
// Version Number!
|
// Version Number!
|
||||||
private static final String VERSION = "1.6.0 Testing 60";
|
private static final String VERSION = "1.6.0 Testing 62";
|
||||||
private static final String AUTHORS = "Corrodias, Morlok8k, pr0f1x";
|
private static final String AUTHORS = "Corrodias, Morlok8k, pr0f1x";
|
||||||
|
|
||||||
private static final String fileSeparator = System.getProperty("file.separator");
|
private static final String fileSeparator = System.getProperty("file.separator");
|
||||||
@ -669,6 +669,8 @@ public class Main {
|
|||||||
|
|
||||||
byte[] saveAll = { 's', 'a', 'v', 'e', '-', 'a', 'l', 'l', '\r', '\n' };
|
byte[] saveAll = { 's', 'a', 'v', 'e', '-', 'a', 'l', 'l', '\r', '\n' };
|
||||||
|
|
||||||
|
boolean prepTextFirst = true;
|
||||||
|
|
||||||
OutputStream outputStream = process.getOutputStream(); // moved here to remove some redundancy
|
OutputStream outputStream = process.getOutputStream(); // moved here to remove some redundancy
|
||||||
|
|
||||||
while ((line = pOut.readLine()) != null) {
|
while ((line = pOut.readLine()) != null) {
|
||||||
@ -690,9 +692,16 @@ public class Main {
|
|||||||
outP(".");
|
outP(".");
|
||||||
} else {
|
} else {
|
||||||
outTmp = outTmp2;
|
outTmp = outTmp2;
|
||||||
|
|
||||||
|
if (prepTextFirst) {
|
||||||
|
outP(MLG + outTmp + "...");
|
||||||
|
prepTextFirst = false;
|
||||||
|
} else {
|
||||||
outP(" " + outTmp + "...");
|
outP(" " + outTmp + "...");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
} else if (line.contains(preparingLevel)) {
|
} else if (line.contains(preparingLevel)) {
|
||||||
if (line.contains("level 0")) { // "Preparing start region for level 0"
|
if (line.contains("level 0")) { // "Preparing start region for level 0"
|
||||||
out("\r\n" + MLG + worldName + ": " + level_0 + ":");
|
out("\r\n" + MLG + worldName + ": " + level_0 + ":");
|
||||||
@ -722,7 +731,7 @@ public class Main {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (line.contains(doneText)) { // now this is configurable!
|
if (line.contains(doneText)) { // now this is configurable!
|
||||||
out("");
|
outP(newLine);
|
||||||
if (waitSave) {
|
if (waitSave) {
|
||||||
out("Waiting 30 seconds to save.");
|
out("Waiting 30 seconds to save.");
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user