diff --git a/core/pom.xml b/core/pom.xml index f678fbac..5a187e4a 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ com.threerings narya - 1.14 + 1.15-SNAPSHOT com.threerings diff --git a/core/src/main/java/com/threerings/whirled/spot/data/ClusterObject.java b/core/src/main/java/com/threerings/whirled/spot/data/ClusterObject.java index 295cfa3b..8f451fc3 100644 --- a/core/src/main/java/com/threerings/whirled/spot/data/ClusterObject.java +++ b/core/src/main/java/com/threerings/whirled/spot/data/ClusterObject.java @@ -26,6 +26,7 @@ import com.threerings.presents.dobj.DObject; import com.threerings.presents.dobj.OidList; import com.threerings.crowd.chat.data.SpeakObject; +import com.threerings.crowd.chat.data.UserMessage; /** * Used to dispatch chat in clusters. @@ -48,10 +49,16 @@ public class ClusterObject extends DObject public void applyToListeners (ListenerOp op) { for (int ii = 0, ll = occupants.size(); ii < ll; ii++) { - op.apply(occupants.get(ii)); + op.apply(this, occupants.get(ii)); } } + // from SpeakObject + public String getChatIdentifier (UserMessage msg) + { + return SpeakObject.DEFAULT_IDENTIFIER; + } + // AUTO-GENERATED: METHODS START /** * Requests that oid be added to the occupants