From 679f3c85cb97577272db2abde05b4335fdce55e4 Mon Sep 17 00:00:00 2001 From: Mike Thomas Date: Thu, 13 Dec 2007 18:50:54 +0000 Subject: [PATCH] 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 --- src/java/com/threerings/parlor/data/Table.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/threerings/parlor/data/Table.java b/src/java/com/threerings/parlor/data/Table.java index 41e3456f..924e2d2f 100644 --- a/src/java/com/threerings/parlor/data/Table.java +++ b/src/java/com/threerings/parlor/data/Table.java @@ -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)); }