Fixed a bug pointed out by Muffy. We love more eyes on the code!

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2342 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-03-27 23:20:55 +00:00
parent f0ef1a95bb
commit 8876bd90e4
@@ -1,5 +1,5 @@
// //
// $Id: Table.java,v 1.13 2003/03/23 02:20:49 mdb Exp $ // $Id: Table.java,v 1.14 2003/03/27 23:20:55 mdb Exp $
package com.threerings.parlor.data; package com.threerings.parlor.data;
@@ -196,7 +196,7 @@ public class Table
{ {
int need = _tconfig.getDesiredPlayers(); int need = _tconfig.getDesiredPlayers();
if (need == -1) { if (need == -1) {
need = _tconfig.getMaximumPlayers(); need = _tconfig.getMinimumPlayers();
} }
// make sure the first "need" players are filled in // make sure the first "need" players are filled in