Updates to reflect SpeakProvider refactoring.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@395 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Michael Bayne
2007-07-31 21:05:36 +00:00
parent 8233be01e7
commit 09ad0ca87d
3 changed files with 7 additions and 8 deletions
@@ -39,7 +39,7 @@ import com.threerings.presents.dobj.AttributeChangedEvent;
import com.threerings.presents.dobj.DObject;
import com.threerings.presents.dobj.MessageEvent;
import com.threerings.crowd.chat.server.SpeakProvider;
import com.threerings.crowd.chat.server.SpeakUtil;
import com.threerings.crowd.data.BodyObject;
import com.threerings.crowd.data.PlaceObject;
@@ -391,8 +391,7 @@ public class GameManager extends PlaceManager
*
* @param waitForStart if true, the message will not be sent until the game has started.
*/
public void systemMessage (
String msgbundle, String msg, boolean waitForStart)
public void systemMessage (String msgbundle, String msg, boolean waitForStart)
{
if (waitForStart && ((_gameobj == null) || (_gameobj.state == GameObject.PRE_GAME))) {
// queue up the message.
@@ -404,7 +403,7 @@ public class GameManager extends PlaceManager
}
// otherwise, just deliver the message
SpeakProvider.sendInfo(_gameobj, msgbundle, msg);
SpeakUtil.sendInfo(_gameobj, msgbundle, msg);
}
/**