Ask the place object if it needs to be broadcasted on before doing so.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2683 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2003-06-25 17:17:41 +00:00
parent 205a25ce10
commit ec6cf00d6f
3 changed files with 25 additions and 5 deletions
@@ -1,5 +1,5 @@
//
// $Id: PlaceObject.java,v 1.13 2003/06/14 00:55:40 mdb Exp $
// $Id: PlaceObject.java,v 1.14 2003/06/25 17:17:41 ray Exp $
package com.threerings.crowd.data;
@@ -46,6 +46,15 @@ public class PlaceObject extends DObject
/** Used to generate speak requests on this place object. */
public SpeakMarshaller speakService;
/**
* Used to indicate whether broadcast chat messages should be dispatched
* on this place object.
*/
public boolean shouldBroadcast ()
{
return true;
}
/**
* Looks up a user's occupant info by name.
*