Start up the place manager *after* we've put it into our place table.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@294 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-08-21 19:38:06 +00:00
parent fe7bfdc67f
commit 043cb46a4d
@@ -1,5 +1,5 @@
// //
// $Id: PlaceRegistry.java,v 1.7 2001/08/16 04:28:36 mdb Exp $ // $Id: PlaceRegistry.java,v 1.8 2001/08/21 19:38:06 mdb Exp $
package com.threerings.cocktail.party.server; package com.threerings.cocktail.party.server;
@@ -183,11 +183,11 @@ public class PlaceRegistry implements Subscriber
return; return;
} }
// start the place manager up with the newly created place object
pmgr.startup((PlaceObject)object);
// stick the manager into our table // stick the manager into our table
_pmgrs.put(object.getOid(), pmgr); _pmgrs.put(object.getOid(), pmgr);
// start the place manager up with the newly created place object
pmgr.startup((PlaceObject)object);
} }
public void requestFailed (int oid, ObjectAccessException cause) public void requestFailed (int oid, ObjectAccessException cause)