From 05d2d84353b1236e938e43cafb9bb798071ebd5b Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Tue, 9 Oct 2001 20:20:52 +0000 Subject: [PATCH] For now, just head directly to the game room when we are notified that our game is ready. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@424 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/parlor/client/ParlorDirector.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/java/com/threerings/parlor/client/ParlorDirector.java b/src/java/com/threerings/parlor/client/ParlorDirector.java index 454040f64..f8827c796 100644 --- a/src/java/com/threerings/parlor/client/ParlorDirector.java +++ b/src/java/com/threerings/parlor/client/ParlorDirector.java @@ -1,5 +1,5 @@ // -// $Id: ParlorDirector.java,v 1.8 2001/10/06 00:25:29 mdb Exp $ +// $Id: ParlorDirector.java,v 1.9 2001/10/09 20:20:52 mdb Exp $ package com.threerings.parlor.client; @@ -195,6 +195,9 @@ public class ParlorDirector public void handleGameReadyNotification (int gameOid) { Log.info("Handling game ready [goid=" + gameOid + "]."); + + // go there + _ctx.getLocationDirector().moveTo(gameOid); } /**