Merge pull request #91 from toolbox4minecraft/adding-new-minecraft-version

added new minecraft version 1.9-pre2
master
Stefan Dollase 2016-02-20 04:49:02 +01:00
commit 98e085f257
93 changed files with 7 additions and 7 deletions

View File

@ -23,7 +23,7 @@ public enum RecognisedVersion {
// TODO: Remove these versions before V1_0?
// TODO: stronghold reset on V1_9pre4?
UNKNOWN,
_1_9_pre1 ("1.9-pre1", "qvoomajzpb[Llp;mm[J[[Jmi"), // matches the launcher version id: 1.9-pre1 16w07b 16w06a 16w05b 16w04a 16w03a 16w02a
_1_9_pre2 ("1.9-pre2", "qvoomajzpb[Llp;mm[J[[Jmi"), // matches the launcher version id: 1.9-pre2 1.9-pre1 16w07b 16w06a 16w05b 16w04a 16w03a 16w02a
_15w51b ("15w51b", "quonmajzpa[Llp;mm[J[[Jmi"), // matches the launcher version id: 15w51b
_15w50a ("15w50a", "qtonmajzpa[Llp;mm[J[[Jmi"), // matches the launcher version id: 15w50a 15w49b 15w47c
_15w46a ("15w46a", "qsonmajzpa[Llp;mm[J[[Jmi"), // matches the launcher version id: 15w46a

View File

@ -122,7 +122,7 @@ public enum DefaultVersionFeatures {
).since(RecognisedVersion._15w43c,
// this should be 15w43a, which is no recognised
(seed, biomeOracle, validBiomes) -> new StrongholdProducer_Buggy128Algorithm(seed, biomeOracle, validBiomes)
).since(RecognisedVersion._1_9_pre1,
).since(RecognisedVersion._1_9_pre2,
// this should be 16w06a
(seed, biomeOracle, validBiomes) -> new StrongholdProducer_128Algorithm(seed, biomeOracle, validBiomes)
).construct();

View File

@ -22,14 +22,14 @@ public enum TestWorldDeclaration {
TestWorldEntryNames.ALL
),
WORLD2(RecognisedVersion._1_9_pre1, "4805355321235747910", WorldType.DEFAULT,
WORLD2(RecognisedVersion._1_9_pre2, "4805355321235747910", WorldType.DEFAULT,
TestWorldEntryNames.ALL
),
/**
* This misses an ocean monument if the quarter-resolution map is used for the structure test.
*/
WORLD3(RecognisedVersion._1_9_pre1, "-1364077613", WorldType.DEFAULT,
WORLD3(RecognisedVersion._1_9_pre2, "-1364077613", WorldType.DEFAULT,
TestWorldEntryNames.ALL
),
@ -43,7 +43,7 @@ public enum TestWorldDeclaration {
/**
* This illustrates the fixed stronghold generation mechanism of the 1.9 snapshots.
*/
WORLD5(RecognisedVersion._1_9_pre1, "1", WorldType.DEFAULT,
WORLD5(RecognisedVersion._1_9_pre2, "1", WorldType.DEFAULT,
TestWorldEntryNames.ALL
),
@ -51,14 +51,14 @@ public enum TestWorldDeclaration {
* This seed contains all biomes in a 1024 radius around spawn. Source:
* http://www.minecraftforum.net/forums/minecraft-discussion/seeds/2500520-1-8-x-rare-seed-all-biomes-within-1024-blocks
*/
WORLD6(RecognisedVersion._1_9_pre1, "24922", WorldType.DEFAULT,
WORLD6(RecognisedVersion._1_9_pre2, "24922", WorldType.DEFAULT,
TestWorldEntryNames.ALL
),
/**
* Similar to 24922
*/
WORLD7(RecognisedVersion._1_9_pre1, "-9223372036681075344", WorldType.DEFAULT,
WORLD7(RecognisedVersion._1_9_pre2, "-9223372036681075344", WorldType.DEFAULT,
TestWorldEntryNames.ALL
);
// @formatter:on