1.6.1 fix 1
This commit is contained in:
parent
8d301de490
commit
38ddc3411c
@ -33,3 +33,4 @@ A5882424B11003537756204DD7EC0DED=1330941087000# MLG v1.6.05
|
||||
E65AC7BA69362EA559901E336C85F22F=1332833070000# MLG v1.6.05
|
||||
DA5CA69AAE6EF0D2815A597ED93DB5DB=1332833731000# MLG v1.6.05
|
||||
F1B044CD44634EDDB85DC44384CB8F0F=1334484354000# MLG v1.6.1
|
||||
36A1C89EFD4967C19AA001B64EE99C80=1334484954000# MLG v1.6.1
|
||||
|
@ -1,6 +1,6 @@
|
||||
#Minecraft Land Generator Configuration File: Version: 1.6.1
|
||||
#Authors: Corrodias, Morlok8k, pr0f1x
|
||||
#Auto-Generated: Sunday, April 15, 2012 at 3:05 AM Pacific Daylight Time
|
||||
#Auto-Generated: Sunday, April 15, 2012 at 3:15 AM Pacific Daylight 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.
@ -263,7 +263,7 @@ public class Main {
|
||||
BufferedReader in = new BufferedReader(new FileReader(config));
|
||||
String line;
|
||||
while ((line = in.readLine()) != null) {
|
||||
if (line == "###RECHECK###") {
|
||||
if (line.contains("###RECHECK###")) {
|
||||
recheckFlag = !recheckFlag;
|
||||
} else {
|
||||
downloadFile(line, true);
|
||||
@ -283,7 +283,7 @@ public class Main {
|
||||
BufferedReader in_recheck = new BufferedReader(new FileReader(config));
|
||||
String line_recheck;
|
||||
while ((line_recheck = in_recheck.readLine()) != null) {
|
||||
if (line_recheck == "###RECHECK###") {
|
||||
if (line_recheck.contains("###RECHECK###")) {
|
||||
recheckFlag = !recheckFlag;
|
||||
} else {
|
||||
downloadFile(line_recheck, true);
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
## Minecraft Land Generator - GitHub Update Script
|
||||
## Morlok8k - Updated 3/27/2012
|
||||
## Morlok8k - Updated 4/15/2012
|
||||
|
||||
zip ./bin/MinecraftLandGenerator.jar ./src/corrodias/minecraft/landgenerator/Main.java
|
||||
|
||||
@ -20,6 +20,6 @@ rm ./MLG-BuildID
|
||||
git add .
|
||||
git commit -a
|
||||
git push origin master
|
||||
echo Pausing for 1 minute
|
||||
sleep 60
|
||||
echo Pausing for 20sec
|
||||
sleep 20
|
||||
|
||||
|
Reference in New Issue
Block a user