Whoops, I booched it.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1346 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-05-07 00:57:49 +00:00
parent ac31caa28b
commit 18c4c32c85
@@ -1,5 +1,5 @@
//
// $Id: GameController.java,v 1.13 2002/05/07 00:49:24 mdb Exp $
// $Id: GameController.java,v 1.14 2002/05/07 00:57:49 mdb Exp $
package com.threerings.parlor.game;
@@ -93,7 +93,7 @@ public abstract class GameController extends PlaceController
public boolean isGameOver ()
{
boolean gameOver =
(_gobj != null) ? (_gobj.state != GameObject.IN_PLAY) : true);
((_gobj != null) ? (_gobj.state != GameObject.IN_PLAY) : true);
return (_gameOver || gameOver);
}