1.6.0 Testing 57
This commit is contained in:
parent
fa3918fc0b
commit
6f10b7f050
4
README
4
README
@ -1,6 +1,6 @@
|
|||||||
Minecraft Land Generator version 1.6.0 Testing 56
|
Minecraft Land Generator version 1.6.0 Testing 57
|
||||||
|
|
||||||
Updated December 25, 2011
|
Updated December 26, 2011
|
||||||
|
|
||||||
Original Code by Corrodias November 2010
|
Original Code by Corrodias November 2010
|
||||||
Enhanced Code by Morlok8k Feb. 2011 to Now (or at least to the date listed above!)
|
Enhanced Code by Morlok8k Feb. 2011 to Now (or at least to the date listed above!)
|
||||||
|
@ -12,3 +12,4 @@ C446074C032FBDB8819FFD36D67B6BDE=1324240329000# MLG v1.6.0 Testing 41
|
|||||||
E24C862A605E1F5AFD6AC476FA362575=1324881816000# MLG v1.6.0 Testing 54
|
E24C862A605E1F5AFD6AC476FA362575=1324881816000# MLG v1.6.0 Testing 54
|
||||||
D8C8AAD349579A6ED6F7BED144BC31F0=1324884237000# MLG v1.6.0 Testing 55
|
D8C8AAD349579A6ED6F7BED144BC31F0=1324884237000# MLG v1.6.0 Testing 55
|
||||||
9FB4D286A823DAE4A0D2F2929A1A8A53=1324886386000# MLG v1.6.0 Testing 56
|
9FB4D286A823DAE4A0D2F2929A1A8A53=1324886386000# MLG v1.6.0 Testing 56
|
||||||
|
DB54C9BB6333F0E45A6B0BE8016B8004=1324887349000# MLG v1.6.0 Testing 57
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#Minecraft Land Generator Configuration File: Version: 1.6.0 Testing 56
|
#Minecraft Land Generator Configuration File: Version: 1.6.0 Testing 57
|
||||||
#Authors: Corrodias, Morlok8k, pr0f1x
|
#Authors: Corrodias, Morlok8k, pr0f1x
|
||||||
#Auto-Generated: Monday, December 26, 2011 at 12:02 AM Pacific Standard Time
|
#Auto-Generated: Monday, December 26, 2011 at 12:19 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.
@ -51,7 +51,7 @@ import org.jnbt.Tag;
|
|||||||
public class Main {
|
public class Main {
|
||||||
|
|
||||||
// Version Number!
|
// Version Number!
|
||||||
private static final String VERSION = "1.6.0 Testing 56";
|
private static final String VERSION = "1.6.0 Testing 57";
|
||||||
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");
|
||||||
@ -1220,7 +1220,6 @@ public class Main {
|
|||||||
if (MLGFileName.equals(rsrcError)) { return; }
|
if (MLGFileName.equals(rsrcError)) { return; }
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO: MLGFileNameShort
|
|
||||||
MLGFileNameShort =
|
MLGFileNameShort =
|
||||||
MLGFileName.substring(MLGFileName.lastIndexOf(fileSeparator) + 1,
|
MLGFileName.substring(MLGFileName.lastIndexOf(fileSeparator) + 1,
|
||||||
MLGFileName.length());
|
MLGFileName.length());
|
||||||
@ -1353,6 +1352,7 @@ public class Main {
|
|||||||
private void updateMLG() {
|
private void updateMLG() {
|
||||||
|
|
||||||
buildID(true); //get latest BuildID file.
|
buildID(true); //get latest BuildID file.
|
||||||
|
MLG_Last_Modified_Date = null;
|
||||||
readBuildID();
|
readBuildID();
|
||||||
|
|
||||||
Iterator<String> e = timeStamps.iterator();
|
Iterator<String> e = timeStamps.iterator();
|
||||||
|
21
update_github.sh
Executable file
21
update_github.sh
Executable file
@ -0,0 +1,21 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
## Minecraft Land Generator - Readme Extractor
|
||||||
|
## Morlok8k - Updated 11/4/2011
|
||||||
|
|
||||||
|
## Just a simple script to help me update my readme file on github.
|
||||||
|
## MLG will display the readme with the "-readme" argument
|
||||||
|
|
||||||
|
cd ./bin/
|
||||||
|
chmod a+x ./MinecraftLandGenerator.jar
|
||||||
|
|
||||||
|
java -jar ./MinecraftLandGenerator.jar -conf
|
||||||
|
|
||||||
|
cd ..
|
||||||
|
java -jar ./bin/MinecraftLandGenerator.jar -readme README
|
||||||
|
|
||||||
|
rm ./MLG-BuildID
|
||||||
|
|
||||||
|
git add .
|
||||||
|
git commit -a
|
||||||
|
git push origin master
|
@ -16,4 +16,5 @@ java -jar ./bin/MinecraftLandGenerator.jar -readme README
|
|||||||
|
|
||||||
rm ./MLG-BuildID
|
rm ./MLG-BuildID
|
||||||
|
|
||||||
|
git commit -a
|
||||||
|
git push origin master
|
Reference in New Issue
Block a user