Updated ClientFactory implementations. Use new PlaceManagerDelegate members.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@619 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Michael Bayne
2008-06-08 20:24:30 +00:00
parent e3dc42daab
commit 36c2cc8289
8 changed files with 40 additions and 53 deletions
@@ -21,7 +21,8 @@
package com.threerings.puzzle.server;
import com.threerings.crowd.server.PlaceManager;
import com.threerings.crowd.data.PlaceConfig;
import com.threerings.parlor.game.server.GameManagerDelegate;
/**
@@ -42,10 +43,10 @@ public class PuzzleManagerDelegate extends GameManagerDelegate
}
@Override // from PlaceManagerDelegate
public void setPlaceManager (PlaceManager plmgr)
public void didInit (PlaceConfig config)
{
super.setPlaceManager(plmgr);
_puzmgr = (PuzzleManager)plmgr;
super.didInit(config);
_puzmgr = (PuzzleManager)_plmgr;
}
protected PuzzleManager _puzmgr;