This appears to have gotten misdirected in the great occupants-players renaming of '07. It always used to reference the member var, not the local var, and appears to still need to since the indices include all slots, not just the filled ones.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@527 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Mike Thomas
2007-12-13 18:50:54 +00:00
parent 57aefb8e1c
commit 679f3c85cb
@@ -195,7 +195,7 @@ public class Table
for (int ii=0; ii < teams.length; ii++) {
set.clear();
for (int jj=0; jj < teams[ii].length; jj++) {
Name occ = plist[teams[ii][jj]];
Name occ = players[teams[ii][jj]];
if (occ != null) {
set.add(ListUtil.indexOf(plist, occ));
}