Fixed Bug in PocketManager
Fixed a bug in PocketManager - I had forgotten to raise the dimension creation event when needed.
This commit is contained in:
parent
6a816bbca7
commit
22b7ed147a
1 changed files with 2 additions and 0 deletions
|
@ -309,6 +309,8 @@ public class PocketManager
|
||||||
|
|
||||||
InnerDimData dimension = new InnerDimData(dimensionID, parent, isPocket, isDungeon, linkWatcher);
|
InnerDimData dimension = new InnerDimData(dimensionID, parent, isPocket, isDungeon, linkWatcher);
|
||||||
dimensionData.put(dimensionID, dimension);
|
dimensionData.put(dimensionID, dimension);
|
||||||
|
dimWatcher.onCreated(new ClientDimData(dimension));
|
||||||
|
|
||||||
return dimension;
|
return dimension;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue