Give personal dims the right provider on client-side
This commit is contained in:
parent
1464638fff
commit
d2c8877c26
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue