From 043cb46a4dadbd2ebec016c150a22a9ebf2d6cf7 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Tue, 21 Aug 2001 19:38:06 +0000 Subject: [PATCH] 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 --- src/java/com/threerings/crowd/server/PlaceRegistry.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/java/com/threerings/crowd/server/PlaceRegistry.java b/src/java/com/threerings/crowd/server/PlaceRegistry.java index 952f7aafc..ca474723b 100644 --- a/src/java/com/threerings/crowd/server/PlaceRegistry.java +++ b/src/java/com/threerings/crowd/server/PlaceRegistry.java @@ -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; @@ -183,11 +183,11 @@ public class PlaceRegistry implements Subscriber return; } - // start the place manager up with the newly created place object - pmgr.startup((PlaceObject)object); - // stick the manager into our table _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)