It's not a draw if one player leaves the puzzle before the other one

scores any points: we are only a draw if the number of winners equals
the number of players who have not bailed.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2944 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2004-01-30 23:03:22 +00:00
parent 3efc81b1ab
commit 70cb0c1cfd
@@ -1,5 +1,5 @@
//
// $Id: PuzzleManager.java,v 1.5 2003/11/26 23:16:43 mdb Exp $
// $Id: PuzzleManager.java,v 1.6 2004/01/30 23:03:22 ray Exp $
package com.threerings.puzzle.server;
@@ -420,7 +420,7 @@ public abstract class PuzzleManager extends GameManager
// report the winners and losers if appropriate
int winnerCount = _puzobj.getWinnerCount();
boolean draw = (winnerCount == getPlayerCount());
boolean draw = (winnerCount == _puzobj.getPlayerCount());
if (shouldConcludeGame() && winnerCount > 0 && !draw) {
reportWinnersAndLosers();
}