mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 04:09:54 +01:00
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;
|
||||
WorldServer fromWorld = this.server.getWorldServer(entityplayer.dimension);
|
||||
WorldServer toWorld = null;
|
||||
if (dimension < 10) {
|
||||
if (entityplayer.dimension < 10) {
|
||||
for (WorldServer world : this.server.worlds) {
|
||||
if (world.dimension == dimension) {
|
||||
toWorld = world;
|
||||
|
Loading…
Reference in New Issue
Block a user