Have where() use which().

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4463 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2006-11-28 18:24:25 +00:00
parent 616f18546c
commit 737bca0a98
@@ -407,8 +407,8 @@ public class PlaceManager
*/
public String where ()
{
return StringUtil.shortClassName(this) + ":" + (
(_plobj != null) ? String.valueOf(_plobj.getOid()) : "-1");
return (_plobj == null) ?
StringUtil.shortClassName(this) + ":-1" : _plobj.which();
}
/**