Fixed NPE travelling to the nether from a custom world
This commit is contained in:
parent
197fdbd84c
commit
b9aaf3977c
@ -308,7 +308,7 @@ public class ServerConfigurationManager {
|
|||||||
int dimension = i;
|
int dimension = i;
|
||||||
WorldServer fromWorld = this.server.getWorldServer(entityplayer.dimension);
|
WorldServer fromWorld = this.server.getWorldServer(entityplayer.dimension);
|
||||||
WorldServer toWorld = null;
|
WorldServer toWorld = null;
|
||||||
if (dimension < 10) {
|
if (entityplayer.dimension < 10) {
|
||||||
for (WorldServer world : this.server.worlds) {
|
for (WorldServer world : this.server.worlds) {
|
||||||
if (world.dimension == dimension) {
|
if (world.dimension == dimension) {
|
||||||
toWorld = world;
|
toWorld = world;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user