1.6.1 fix 2

This commit is contained in:
Morlok8k 2012-04-18 01:56:49 -07:00
parent a931ce1550
commit 63a1152dbb
5 changed files with 12 additions and 7 deletions

6
README
View File

@ -1,9 +1,10 @@
Minecraft Land Generator version 1.6.1 Minecraft Land Generator version 1.6.1
Updated April 15, 2012 Updated April 18, 2012
(BuildID: 1334739407000)
Original Code by Corrodias November 2010 Original Code by Corrodias November 2010
Enhanced Code by Morlok8k Feb. 2011 to Now (or at least to April 15, 2012!) Enhanced Code by Morlok8k Feb. 2011 to Now (or at least to April 18, 2012!)
Additional Code by pr0f1x October 2011 Additional Code by pr0f1x October 2011
Website: https://sites.google.com/site/minecraftlandgenerator/ Website: https://sites.google.com/site/minecraftlandgenerator/
@ -32,6 +33,7 @@ Morlok8k:
- Renamed -y switch to -z. MLG will remain backwards compatible if you use the old -y switch. - Renamed -y switch to -z. MLG will remain backwards compatible if you use the old -y switch.
- Updated -printspawn to show X,Y,Z - Updated -printspawn to show X,Y,Z
- Added End-of-Generation ASCII-Graphic - Added End-of-Generation ASCII-Graphic
- Slightly altered some text output
1.6.05 1.6.05
- MLG displays if the server is converting the Map format, when not in verbose mode. (McRegion -> Anvil, or Chunk-File -> McRegion) - MLG displays if the server is converting the Map format, when not in verbose mode. (McRegion -> Anvil, or Chunk-File -> McRegion)

View File

@ -34,3 +34,4 @@ E65AC7BA69362EA559901E336C85F22F=1332833070000# MLG v1.6.05
DA5CA69AAE6EF0D2815A597ED93DB5DB=1332833731000# MLG v1.6.05 DA5CA69AAE6EF0D2815A597ED93DB5DB=1332833731000# MLG v1.6.05
F1B044CD44634EDDB85DC44384CB8F0F=1334484354000# MLG v1.6.1 F1B044CD44634EDDB85DC44384CB8F0F=1334484354000# MLG v1.6.1
36A1C89EFD4967C19AA001B64EE99C80=1334484954000# MLG v1.6.1 36A1C89EFD4967C19AA001B64EE99C80=1334484954000# MLG v1.6.1
891492F60015683B98CD7A4F4430AE16=1334739407000# MLG v1.6.1

View File

@ -1,6 +1,6 @@
#Minecraft Land Generator Configuration File: Version: 1.6.1 #Minecraft Land Generator Configuration File: Version: 1.6.1
#Authors: Corrodias, Morlok8k, pr0f1x #Authors: Corrodias, Morlok8k, pr0f1x
#Auto-Generated: Sunday, April 15, 2012 at 3:15 AM Pacific Daylight Time #Auto-Generated: Wednesday, April 18, 2012 at 1:56 AM 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.

View File

@ -718,7 +718,7 @@ public class Main {
if (line.contains(doneText)) { // EDITED By Morlok8k for Minecraft 1.3+ Beta if (line.contains(doneText)) { // EDITED By Morlok8k for Minecraft 1.3+ Beta
OutputStream outputStream = process.getOutputStream(); OutputStream outputStream = process.getOutputStream();
out("Stopping server..."); out("Stopping server... (Please Wait...)");
outputStream.write(stop); outputStream.write(stop);
outputStream.flush(); outputStream.flush();
@ -833,7 +833,7 @@ public class Main {
if (line.contains(doneText)) { // now this is configurable! if (line.contains(doneText)) { // now this is configurable!
outP(newLine); outP(newLine);
if (waitSave) { if (waitSave) {
out("Waiting 30 seconds to save."); out("Waiting 30 seconds to save...");
int count = 1; int count = 1;
while (count <= 30) { while (count <= 30) {
@ -848,11 +848,11 @@ public class Main {
} }
out(""); out("");
} }
out("Saving server data."); out("Saving server data...");
outputStream.write(saveAll); outputStream.write(saveAll);
outputStream.flush(); outputStream.flush();
out("Stopping server."); out("Stopping server... (Please Wait...)");
// OutputStream outputStream = process.getOutputStream(); // OutputStream outputStream = process.getOutputStream();
outputStream.write(stop); outputStream.write(stop);
outputStream.flush(); outputStream.flush();
@ -1012,6 +1012,7 @@ public class Main {
ReadMeText = PROG_NAME + " version " + VERSION + newLine ReadMeText = PROG_NAME + " version " + VERSION + newLine
+ newLine + newLine
+ "Updated " + dateFormat_MDY.format(MLG_Last_Modified_Date) + newLine + "Updated " + dateFormat_MDY.format(MLG_Last_Modified_Date) + newLine
+ "(BuildID: " + MLG_Last_Modified_Date.getTime() + ")" + newLine
+ newLine + newLine
+ "Original Code by Corrodias November 2010" + newLine + "Original Code by Corrodias November 2010" + newLine
+ "Enhanced Code by Morlok8k Feb. 2011 to Now (or at least to " + dateFormat_MDY.format(MLG_Last_Modified_Date) + "!)" + newLine + "Enhanced Code by Morlok8k Feb. 2011 to Now (or at least to " + dateFormat_MDY.format(MLG_Last_Modified_Date) + "!)" + newLine
@ -1045,6 +1046,7 @@ public class Main {
+ "- Renamed -y switch to -z. MLG will remain backwards compatible if you use the old -y switch." + newLine + "- Renamed -y switch to -z. MLG will remain backwards compatible if you use the old -y switch." + newLine
+ "- Updated -printspawn to show X,Y,Z" + newLine + "- Updated -printspawn to show X,Y,Z" + newLine
+ "- Added End-of-Generation ASCII-Graphic" + newLine + "- Added End-of-Generation ASCII-Graphic" + newLine
+ "- Slightly altered some text output" + newLine
+ newLine + newLine
+ "1.6.05" + newLine + "1.6.05" + newLine
+ "- MLG displays if the server is converting the Map format, when not in verbose mode. (McRegion -> Anvil, or Chunk-File -> McRegion)" + newLine + "- MLG displays if the server is converting the Map format, when not in verbose mode. (McRegion -> Anvil, or Chunk-File -> McRegion)" + newLine