diff --git a/README b/README index bf26e00..d7461aa 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ Minecraft Land Generator version 1.6.3 Updated May 31, 2012 -(BuildID: 1338452175000) +(BuildID: 1338515819000) Original Code by Corrodias November 2010 Enhanced Code by Morlok8k Feb. 2011 to Now (or at least to May 31, 2012!) diff --git a/bin/MLG-BuildID b/bin/MLG-BuildID index cdcf735..e45f236 100644 --- a/bin/MLG-BuildID +++ b/bin/MLG-BuildID @@ -41,3 +41,4 @@ F1B044CD44634EDDB85DC44384CB8F0F=1334484354000# MLG v1.6.1 C05A70CD4B913AD6AE37BC7ABF0EE2CA=1337921526000# MLG v1.6.2 4A493B933C3117111A49806B27F02AFD=1338085654000# MLG v1.6.2 8D7527BF8F0D350644506D3012BC321A=1338452175000# MLG v1.6.3 +DB07F7F5D4D46ED346ACE3AECBEA41E5=1338515819000# MLG v1.6.3 diff --git a/bin/MinecraftLandGenerator.conf b/bin/MinecraftLandGenerator.conf index 65cd275..d6aa1ca 100644 --- a/bin/MinecraftLandGenerator.conf +++ b/bin/MinecraftLandGenerator.conf @@ -1,6 +1,6 @@ #Minecraft Land Generator Configuration File: Version: 1.6.3 #Authors: Corrodias, Morlok8k, pr0f1x -#Auto-Generated: Thursday, May 31, 2012 at 1:16 AM Pacific Daylight Time +#Auto-Generated: Thursday, May 31, 2012 at 6:56 PM 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 diff --git a/bin/MinecraftLandGenerator.jar b/bin/MinecraftLandGenerator.jar index 3152e84..4a98d87 100755 Binary files a/bin/MinecraftLandGenerator.jar and b/bin/MinecraftLandGenerator.jar differ diff --git a/src/corrodias/minecraft/landgenerator/Main.java b/src/corrodias/minecraft/landgenerator/Main.java index 7d20d9a..f079806 100644 --- a/src/corrodias/minecraft/landgenerator/Main.java +++ b/src/corrodias/minecraft/landgenerator/Main.java @@ -1296,6 +1296,10 @@ public class Main { while ((line = in.readLine()) != null) { int pos = line.indexOf('='); + if (pos == -1) { // If we have no = sign + pos = 0; + } + int end = line.lastIndexOf('#'); // comments, ignored lines if (end == -1) { // If we have no hash sign, then we read till the end of the line @@ -1610,6 +1614,11 @@ public class Main { while ((line = in.readLine()) != null) { int pos = line.indexOf('='); + + if (pos == -1) { // If we have no = sign + pos = 0; + } + int end = line.lastIndexOf('#'); // comments, ignored lines if (end == -1) { // If we have no hash sign, then we read till the end of the line