Fixed the toString() output a bit.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@52 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Ray Greenwell
2006-08-23 21:25:59 +00:00
parent 77c51c95d8
commit a993e2ec46
@@ -254,7 +254,7 @@ public class GameObject extends PlaceObject
override protected function whichBuf (buf :StringBuilder) :void override protected function whichBuf (buf :StringBuilder) :void
{ {
super.whichBuf(buf); super.whichBuf(buf);
buf.append(players.join()); buf.append("(").append(players.join()).append(")");
buf.append(":").append(state); buf.append(":").append(state);
} }