Fix crash on exiting personal pocket dimension #185

Closed
notabadminer wants to merge 67 commits from master into master
Showing only changes of commit d2c8877c26 - Show all commits

View File

@@ -568,7 +568,10 @@ public class PocketManager
// unfortuantly. I send the dimdata to the client when they // unfortuantly. I send the dimdata to the client when they
// teleport. // teleport.
// Steven // Steven
DimensionManager.registerDimension(dimensionID, mod_pocketDim.properties.PocketProviderID); int providerID = mod_pocketDim.properties.PocketProviderID;
if (type == DimensionType.PERSONAL)
providerID = mod_pocketDim.properties.PersonalPocketProviderID;
DimensionManager.registerDimension(dimensionID,providerID);
} }
return dimension; return dimension;
} }