Newly created END worlds will now use a scale of 16. This will result in people ending up invariably closer to the end island when teleporting in while using MV-NetherPortals.

This commit is contained in:
Jeremy Wood 2012-11-14 13:58:08 -05:00
parent 155aad8bf2
commit b11d911e4a
1 changed files with 2 additions and 0 deletions

View File

@ -335,6 +335,8 @@ public class WorldProperties extends SerializationConfig {
private static double getDefaultScale(Environment environment) {
if (environment == Environment.NETHER) {
return 8.0; // SUPPRESS CHECKSTYLE: MagicNumberCheck
} else if (environment == Environment.THE_END) {
return 16.0; // SUPPRESS CHECKSTYLE: MagicNumberCheck
}
return 1.0;
}