More spots, missed.
git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@57 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
@@ -252,9 +252,9 @@ public class EZGameManager extends GameManager
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Class<? extends PlaceObject> getPlaceObjectClass ()
|
||||
protected PlaceObject createPlaceObject ()
|
||||
{
|
||||
return EZGameObject.class;
|
||||
return new EZGameObject();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
|
||||
package com.threerings.micasa.lobby.table;
|
||||
|
||||
import com.threerings.crowd.data.PlaceObject;
|
||||
import com.threerings.parlor.server.TableManager;
|
||||
import com.threerings.parlor.server.TableManagerProvider;
|
||||
import com.threerings.micasa.lobby.LobbyManager;
|
||||
@@ -43,9 +44,9 @@ public class TableLobbyManager
|
||||
}
|
||||
|
||||
// documentation inherited
|
||||
protected Class getPlaceObjectClass ()
|
||||
protected PlaceObject createPlaceObject ()
|
||||
{
|
||||
return TableLobbyObject.class;
|
||||
return new TableLobbyObject();
|
||||
}
|
||||
|
||||
// documentation inherited
|
||||
|
||||
@@ -41,6 +41,7 @@ import com.threerings.presents.dobj.DObject;
|
||||
import com.threerings.crowd.chat.server.SpeakProvider;
|
||||
|
||||
import com.threerings.crowd.data.BodyObject;
|
||||
import com.threerings.crowd.data.PlaceObject;
|
||||
import com.threerings.crowd.server.CrowdServer;
|
||||
import com.threerings.crowd.server.PlaceManager;
|
||||
import com.threerings.crowd.server.PlaceManagerDelegate;
|
||||
@@ -485,9 +486,9 @@ public class GameManager extends PlaceManager
|
||||
}
|
||||
|
||||
// documentation inherited
|
||||
protected Class getPlaceObjectClass ()
|
||||
protected PlaceObject createPlaceObject ()
|
||||
{
|
||||
return GameObject.class;
|
||||
return new GameObject();
|
||||
}
|
||||
|
||||
// documentation inherited
|
||||
|
||||
@@ -33,6 +33,7 @@ import com.threerings.presents.dobj.DObject;
|
||||
import com.threerings.presents.dobj.OidList;
|
||||
|
||||
import com.threerings.crowd.data.BodyObject;
|
||||
import com.threerings.crowd.data.PlaceObject;
|
||||
import com.threerings.crowd.server.CrowdServer;
|
||||
|
||||
import com.threerings.parlor.game.data.GameObject;
|
||||
@@ -169,9 +170,9 @@ public abstract class PuzzleManager extends GameManager
|
||||
}
|
||||
|
||||
// documentation inherited
|
||||
protected Class getPlaceObjectClass ()
|
||||
protected PlaceObject createPlaceObject ()
|
||||
{
|
||||
return PuzzleObject.class;
|
||||
return new PuzzleObject();
|
||||
}
|
||||
|
||||
// documentation inherited
|
||||
|
||||
Reference in New Issue
Block a user